forked from linux/WebHosting
16 lines
343 B
Plaintext
16 lines
343 B
Plaintext
<VirtualHost *:80>
|
|
ServerName lbr-scheduler.psi.ch
|
|
DocumentRoot /var/www/lbr-scheduler
|
|
|
|
<Directory /var/www/lbr-scheduler>
|
|
Options FollowSymLinks
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog /proc/self/fd/2
|
|
CustomLog /proc/self/fd/1 combined
|
|
</VirtualHost>
|
|
|