Tom Evans <[email protected]> wrote:
> On Fri, Sep 28, 2012 at 10:17 AM, Roel Wagenaar <[email protected]> wrote:
> > Hi,
> >
> > I am trying to get SSI working on my Apache2 server, I have been
following this
> > guideline:
> >
> > http://httpd.apache.org/docs/2.2/howto/ssi.html
> >
> > to the letter
>
> Can you share your configuration so we can validate this :)
>
> Cheers
>
> Tom
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>
>
Sure, httpd.conf and the virtual_server.conf attached, /etc/apache2/apache2.conf
is untouched and left like the Debian installer put it.
No need to CC: me.
--
Roel Wagenaar,
Linux-User #469851 with the Linux Counter; http://linuxcounter.net/
Why be difficult, when with a bit of effort, you can be impossible?
/etc/apache2/httpd.conf:
NameVirtualHost 46.231.82.14:80
ServerName wagenaar.nu
Options +Includes
XBitHack full
Virtual server:
/etc/apache2/sites-enabled/999-default:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName www.wagenaar.nu:80
DocumentRoot /data/web
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /data/web>
Options +FollowSymLinks +MultiViews +Includes
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
# RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
CustomLog |/usr/local/bin/apache_syslog combined
ServerSignature On
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]