0
|
1 |
<VirtualHost *:80>
|
|
2 |
ServerName REPLACE_ME
|
|
3 |
ServerAlias ssoinabox
|
|
4 |
|
|
5 |
DocumentRoot "/usr/local/share/ssoinabox/htdocs"
|
|
6 |
<Directory "/usr/local/share/ssoinabox/htdocs">
|
|
7 |
Options -Indexes -FollowSymLinks
|
|
8 |
Options +SymLinksIfOwnerMatch
|
|
9 |
AllowOverride all
|
|
10 |
Order allow,deny
|
|
11 |
Allow from all
|
|
12 |
</Directory>
|
|
13 |
|
|
14 |
<Location "/webkdc-service">
|
|
15 |
SetHandler webkdc
|
|
16 |
AuthType none
|
|
17 |
Satisfy Any
|
|
18 |
Allow from all
|
|
19 |
</Location>
|
|
20 |
|
|
21 |
<Location "/webauth-status">
|
|
22 |
SetHandler webauth
|
|
23 |
</Location>
|
|
24 |
|
|
25 |
<Location "/logout">
|
|
26 |
WebAuthDoLogout on
|
|
27 |
</Location>
|
|
28 |
|
|
29 |
ScriptAlias /login "/usr/share/weblogin/login.fcgi"
|
|
30 |
ScriptAlias /logout "/usr/share/weblogin/logout.fcgi"
|
|
31 |
ScriptAlias /pwchange "/usr/share/weblogin/pwchange.fcgi"
|
|
32 |
Alias /images "/usr/local/share/weblogin/ssoinabox/images/"
|
|
33 |
Alias /help.html "/usr/local/share/weblogin/ssoinabox/templates/help.html"
|
|
34 |
Alias /security.html "/usr/local/share/weblogin/ssoinabox/templates/security.html"
|
|
35 |
</VirtualHost>
|