blob: 8e1aae11d662b4ca24a3e26c4b232ada027bce94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<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
DocumentRoot /var/www/https
<Directory /var/www/https>
Order Deny,Allow
Allow from all
# Zeige keine Verzeichnisse an
Options -Indexes
</Directory>
</VirtualHost>
|