Project

General

Profile

Download (1.18 KB) Statistics
| Branch: | Tag: | Revision:
04cc161c David Sorber
<VirtualHost *:80>
Redirect permanent / https://10.0.0.3
</VirtualHost>
<VirtualHost _default_:443>
ServerName https://10.0.0.3:443
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
Alias /htdocs /var/htdocs
<Directory /var/htdocs>
Require all granted
</Directory>

#ErrorDocument 403 /error_pages/404.html
#ErrorDocument 404 /error_pages/404.html
CustomLog ${APACHE_LOG_DIR}/access.log combined
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/saga.crt
SSLCertificateKeyFile /etc/apache2/ssl/saga.key
SSLProtocol -all +TLSv1.2
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>