20 lines
435 B
Plaintext
20 lines
435 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin info@hackerspace.lu
|
|
ServerName lights.level2.lu
|
|
|
|
DocumentRoot /var/www/lights.level2.lu
|
|
|
|
<Directory var/www/lights.level2.lu>
|
|
Options +FollowSymLinks -Indexes
|
|
AllowOverride All
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit,
|
|
# alert, emerg.
|
|
LogLevel warn
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|