mirror of
https://github.com/24eme/signaturepdf.git
synced 2023-08-25 09:33:08 +02:00
23 lines
563 B
ApacheConf
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>
|