mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 01:32:08 +01:00
20 lines
486 B
ApacheConf
20 lines
486 B
ApacheConf
<VirtualHost *:80>
|
|
SSLEngine On
|
|
SSLCertificateFile /etc/apache2/ssl/apache.crt
|
|
SSLCertificateKeyFile /etc/apache2/ssl/apache.key
|
|
|
|
DocumentRoot /var/www/html/htdocs/pages/planete
|
|
|
|
<Directory />
|
|
Options +Indexes +FollowSymLinks
|
|
Require all granted
|
|
AllowOverride None
|
|
</Directory>
|
|
|
|
<Directory /var/www/html/htdocs/pages/planete>
|
|
AllowOverride none
|
|
Require all granted
|
|
</Directory>
|
|
|
|
</VirtualHost>
|