Time to retire ODCS. ELN is moved off and that was the last thing using it. Thanks for all the service ODCS! Signed-off-by: Kevin Fenzi <kevin@scrye.com>
81 lines
1.7 KiB
Text
81 lines
1.7 KiB
Text
Alias /pub /srv/pub
|
|
|
|
DocumentRoot /srv/web
|
|
|
|
<Directory /srv/web>
|
|
HeaderName /HEADER.html
|
|
ReadmeName /FOOTER.html
|
|
Options Indexes FollowSymLinks
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
<Directory /srv/pub>
|
|
HeaderName /HEADER.html
|
|
ReadmeName /FOOTER.html
|
|
Options Indexes FollowSymLinks
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
IndexOptions NameWidth=* FancyIndexing
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
<Directory /srv/centos*>
|
|
HeaderName /HEADER.html
|
|
ReadmeName /FOOTER.html
|
|
Options Indexes FollowSymLinks
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
IndexOptions NameWidth=* FancyIndexing
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
<Directory /srv/pub/alt>
|
|
HeaderName HEADER.html
|
|
ReadmeName README
|
|
Options Indexes FollowSymLinks
|
|
IndexIgnore .??* *~ *# RCS CVS *,v *,t
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
IndexOptions NameWidth=* FancyIndexing
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
<Directory /srv/pub/archive>
|
|
ReadmeName /pub/archive/README.html
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require all granted
|
|
IndexOptions NameWidth=* FancyIndexing
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Directory>
|