engelsystem/install/default-conf/etc/apache/https

20 lines
508 B
Plaintext
Raw Normal View History

<VirtualHost *:443>
# SSL (START)
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/apache.pem
SSLCertificateKeyFile /etc/apache2/apache.pem
# SSL (ENDE)
ServerAdmin webmaster@localhost
#kann auch einfach eine IP sein
ServerName localhost
php_admin_value open_basedir "/var/www/"
DocumentRoot /var/www/https
<Directory /var/www/https>
Order Deny,Allow
Allow from all
# Zeige keine Verzeichnisse an
Options -Indexes
</Directory>
</VirtualHost>