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