mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 06:51:58 +01:00
17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
<VirtualHost *:80>
|
|
ServerName HOSTNAME
|
|
|
|
DocumentRoot "/var/www/piler"
|
|
|
|
<Directory /var/www/piler>
|
|
Order allow,deny
|
|
Allow from all
|
|
|
|
AllowOverride all
|
|
</Directory>
|
|
|
|
ErrorLog "/var/log/apache2/HOSTNAME-error_log"
|
|
CustomLog "/var/log/apache2/HOSTNAME-access_log" common
|
|
</VirtualHost>
|
|
|