You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
508 B
Plaintext
20 lines
508 B
Plaintext
|
|
<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>
|