2008-04-09 05:22:22 +02:00
|
|
|
|
|
|
|
<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
|
2008-09-26 23:57:01 +02:00
|
|
|
php_admin_value open_basedir "/var/www/"
|
2008-04-09 05:22:22 +02:00
|
|
|
DocumentRoot /var/www/https
|
|
|
|
<Directory /var/www/https>
|
|
|
|
Order Deny,Allow
|
|
|
|
Allow from all
|
|
|
|
# Zeige keine Verzeichnisse an
|
|
|
|
Options -Indexes
|
|
|
|
</Directory>
|
|
|
|
</VirtualHost>
|