author | Dan Fuhry <dan@enanocms.org> |
Sat, 23 Feb 2013 14:26:38 -0500 | |
changeset 9 | f4bf6556fb9f |
parent 4 | 2212b2ded8bf |
permissions | -rw-r--r-- |
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" |
|
4
2212b2ded8bf
Added OpenSSH public key support in LDAP
Dan Fuhry <dan@fuhry.us>
parents:
0
diff
changeset
|
30 |
ScriptAlias /webauth-logout "/usr/share/weblogin/logout.fcgi" |
0 | 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> |