15 lines
445 B
Text
15 lines
445 B
Text
|
<VirtualHost *:80>
|
||
|
ServerAdmin webmaster@localhost
|
||
|
DocumentRoot /var/www/html
|
||
|
|
||
|
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
|
||
|
# error, crit, alert, emerg.
|
||
|
LogLevel warn
|
||
|
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
|
||
|
Alias /wiki /var/www/html/index.php
|
||
|
Alias /uploads /var/www/localstore/images
|
||
|
</VirtualHost>
|