| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- ##
- ## apache.conf -- Apache Custom Configuration
- ##
- # include Apache default/base configuration
- Include "@l_prefix@/etc/apache/apache.base"
- Listen 127.0.0.1:80
- NameVirtualHost 127.0.0.1:80
- <IfModule mod_ssl.c>
- Listen 127.0.0.1:443
- </IfModule>
- <VirtualHost 127.0.0.1:80>
- ServerName @l_hostname@.@l_domainname@
- ServerAlias localhost.@l_domainname@
- ServerAdmin root@localhost.@l_domainname@
- ServerSignature on
- DocumentRoot @l_prefix@/share/apache/htdocs
- <Directory @l_prefix@/share/apache/htdocs>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride none
- Order allow,deny
- Allow from all
- </Directory>
- ScriptAlias /cgi-bin @l_prefix@/cgi
- <Directory @l_prefix@/cgi>
- Options Indexes FollowSymLinks MultiViews ExecCGI
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- </VirtualHost>
- <IfModule mod_ssl.c>
- <VirtualHost 127.0.0.1:443>
- ServerName @l_hostname@.@l_domainname@
- ServerAlias localhost.@l_domainname@
- ServerAdmin root@localhost.@l_domainname@
- ServerSignature on
- DocumentRoot @l_prefix@/share/apache/htdocs
- <Directory @l_prefix@/share/apache/htdocs>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride none
- Order allow,deny
- Allow from all
- </Directory>
- ScriptAlias /cgi-bin @l_prefix@/cgi
- <Directory @l_prefix@/cgi>
- Options Indexes FollowSymLinks MultiViews ExecCGI
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- SSLEngine on
- SSLCertificateFile @l_prefix@/etc/apache/ssl.crt/snakeoil-rsa.crt
- SSLCertificateKeyFile @l_prefix@/etc/apache/ssl.key/snakeoil-rsa.key
- SSLCertificateFile @l_prefix@/etc/apache/ssl.crt/snakeoil-dsa.crt
- SSLCertificateKeyFile @l_prefix@/etc/apache/ssl.key/snakeoil-dsa.key
- </VirtualHost>
- </IfModule>
|