blob: 24d6e155c31605afb24ad49be42db0a7b896cfd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName authpuppy.localhost
ServerAlias authpuppy.test
DocumentRoot "/srv/http/authpuppy/web"
<Directory /srv/http//authpuppy/web/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Alias /auth "/srv/http/authpuppy/web"
<Directory "/srv/http/authpuppy/web">
AllowOverride All
Allow from All
</Directory>
ErrorLog "/var/log/httpd/authpuppy/error.log"
CustomLog "/var/log/httpd/authpuppy/access.log" combined
</VirtualHost>
|