File:  [LON-CAPA] / doc / install / linux / debian-ubuntu / Attic / apache2.conf
Revision 1.1: download - view: text, annotated - select for diffs
Sun Apr 24 02:11:27 2011 UTC (13 years, 5 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Enable use of a single install.tar file for all supported Linux
  distros/versions when preparing systems for LON-CAPA installation.
  - files needed for installation:
   (a) file needed by all distros - pwauth-2.2.8.tar.gz - found in $instdir
   (b) files specific to different distros - found in:
       $instdir/centos-rhes-fedora-sl, $instdir/debian-ubuntu,
       $instdir/sles-suse, and $instdir/rhes4.

<VirtualHost *:80>
        ServerAdmin webmaster@localhost

        DocumentRoot /home/httpd/html
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </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

    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>

Include /etc/apache2/conf/loncapa_apache.conf

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