mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
13 lines
389 B
ApacheConf
13 lines
389 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
|
|
SetEnv ALLOW_BLOG_FROM_ALL 1
|
|
</Directory>
|
|
</VirtualHost>
|