diff -r 5a93a7863039 -r f805be991d7f apache/apache.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apache/apache.conf Mon Sep 17 19:01:16 2012 +0200 @@ -0,0 +1,72 @@ +## +## apache.conf -- Apache Custom Configuration +## + +# include Apache default/base configuration +Include "@l_prefix@/etc/apache/apache.base" + +# include Apache add-on configurations +# (mainly provided by other packages) +Include "@l_prefix@/etc/apache/apache.d/*.conf" + +Listen 127.0.0.1:80 +NameVirtualHost 127.0.0.1:80 + + +Listen 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 + + Options Indexes FollowSymLinks MultiViews + AllowOverride none + Order allow,deny + Allow from all + + + ScriptAlias /cgi-bin @l_prefix@/cgi + + Options Indexes FollowSymLinks MultiViews ExecCGI + AllowOverride None + Order allow,deny + Allow from all + + + + + + ServerName @l_hostname@.@l_domainname@ + ServerAlias localhost.@l_domainname@ + ServerAdmin root@localhost.@l_domainname@ + ServerSignature on + + DocumentRoot @l_prefix@/share/apache/htdocs + + Options Indexes FollowSymLinks MultiViews + AllowOverride none + Order allow,deny + Allow from all + + + ScriptAlias /cgi-bin @l_prefix@/cgi + + Options Indexes FollowSymLinks MultiViews ExecCGI + AllowOverride None + Order allow,deny + Allow from all + + + SSLEngine on + SSLCADNRequestFile @l_prefix@/etc/x509/example-ca.crt.pem + SSLCACertificateFile @l_prefix@/etc/x509/example-ca.crt.pem + SSLCertificateFile @l_prefix@/etc/x509/example-server.crt.pem + SSLCertificateKeyFile @l_prefix@/etc/x509/example-server.key.pem + + +