1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-02 14:12:45 +02:00
24eme-signaturepdf/config/apache.conf
2022-04-01 17:36:53 +02:00

23 lines
563 B
ApacheConf

<VirtualHost *:80>
ServerName ${SERVERNAME}
DocumentRoot /usr/local/signaturepdf/public
DirectoryIndex index.php
AddDefaultCharset UTF-8
<Directory /usr/local/signaturepdf/public>
AllowOverride All
<IfVersion >= 2.3>
Require all granted
</IfVersion>
<IfVersion < 2.3>
Order Deny,Allow
Allow from all
</IfVersion>
</Directory>
LogLevel warn
ErrorLog /var/log/apache2/ssp_error.log
CustomLog /var/log/apache2/ssp_access.log combined
</VirtualHost>