13 lines
307 B
Plaintext
13 lines
307 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /srv
|
|
<Directory /srv>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Require all granted
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/error.log
|
|
CustomLog /var/log/apache2/access.log combined
|
|
</VirtualHost>
|