Annotation of doc/install/linux/debian-ubuntu/apache2.conf, revision 1.2

1.1       raeburn     1: <VirtualHost *:80>
                      2:         ServerAdmin webmaster@localhost
                      3: 
                      4:         DocumentRoot /home/httpd/html
                      5:         <Directory />
                      6:                 Options FollowSymLinks
                      7:                 AllowOverride None
                      8:         </Directory>
                      9:         ErrorLog /var/log/apache2/error.log
                     10: 
                     11:         # Possible values include: debug, info, notice, warn, error, crit,
                     12:         # alert, emerg.
                     13:         LogLevel warn
                     14: 
                     15:         CustomLog /var/log/apache2/access.log combined
                     16: 
                     17:     Alias /doc/ "/usr/share/doc/"
                     18:     <Directory "/usr/share/doc/">
                     19:         Options Indexes MultiViews FollowSymLinks
                     20:         AllowOverride None
                     21:         Order deny,allow
                     22:         Deny from all
                     23:         Allow from 127.0.0.0/255.0.0.0 ::1/128
                     24:     </Directory>
                     25: 
                     26: </VirtualHost>
                     27: 
1.2     ! raeburn    28: Include conf/loncapa_apache.conf

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>