michael@684: ##
michael@684: ## apache.conf -- Apache Custom Configuration
michael@684: ##
michael@684:
michael@684: # include Apache default/base configuration
michael@684: Include "@l_prefix@/etc/apache/apache.base"
michael@684:
michael@684: # include Apache add-on configurations
michael@684: # (mainly provided by other packages)
michael@684: Include "@l_prefix@/etc/apache/apache.d/*.conf"
michael@684:
michael@684: Listen 127.0.0.1:80
michael@684: NameVirtualHost 127.0.0.1:80
michael@684:
michael@684:
michael@684: Listen 127.0.0.1:443
michael@684:
michael@684:
michael@684:
michael@684: ServerName @l_hostname@.@l_domainname@
michael@684: ServerAlias localhost.@l_domainname@
michael@684: ServerAdmin root@localhost.@l_domainname@
michael@684: ServerSignature on
michael@684:
michael@684: DocumentRoot @l_prefix@/share/apache/htdocs
michael@684:
michael@684: Options Indexes FollowSymLinks MultiViews
michael@684: AllowOverride none
michael@684: Order allow,deny
michael@684: Allow from all
michael@684:
michael@684:
michael@684: ScriptAlias /cgi-bin @l_prefix@/cgi
michael@684:
michael@684: Options Indexes FollowSymLinks MultiViews ExecCGI
michael@684: AllowOverride None
michael@684: Order allow,deny
michael@684: Allow from all
michael@684:
michael@684:
michael@684:
michael@684:
michael@684:
michael@684: ServerName @l_hostname@.@l_domainname@
michael@684: ServerAlias localhost.@l_domainname@
michael@684: ServerAdmin root@localhost.@l_domainname@
michael@684: ServerSignature on
michael@684:
michael@684: DocumentRoot @l_prefix@/share/apache/htdocs
michael@684:
michael@684: Options Indexes FollowSymLinks MultiViews
michael@684: AllowOverride none
michael@684: Order allow,deny
michael@684: Allow from all
michael@684:
michael@684:
michael@684: ScriptAlias /cgi-bin @l_prefix@/cgi
michael@684:
michael@684: Options Indexes FollowSymLinks MultiViews ExecCGI
michael@684: AllowOverride None
michael@684: Order allow,deny
michael@684: Allow from all
michael@684:
michael@684:
michael@684: SSLEngine on
michael@684: SSLCADNRequestFile @l_prefix@/etc/x509/example-ca.crt.pem
michael@684: SSLCACertificateFile @l_prefix@/etc/x509/example-ca.crt.pem
michael@684: SSLCertificateFile @l_prefix@/etc/x509/example-server.crt.pem
michael@684: SSLCertificateKeyFile @l_prefix@/etc/x509/example-server.key.pem
michael@684:
michael@684:
michael@684: