mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-26 10:12:16 +01:00
12 lines
352 B
ApacheConf
12 lines
352 B
ApacheConf
<VirtualHost *:80>
|
|
SSLEngine On
|
|
SSLCertificateFile /etc/apache2/ssl/apache.crt
|
|
SSLCertificateKeyFile /etc/apache2/ssl/apache.key
|
|
DocumentRoot /var/www/html/htdocs
|
|
<Directory /var/www/html/htdocs>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|