mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
2d7e0de5ea
I have only tested the all, rpms and *clean targets directly. install may work but the rpm moves a lot of things around for us. The Apache configuration file isn't in its final state but it works with the new mod_python configuration.
109 lines
2.6 KiB
Plaintext
109 lines
2.6 KiB
Plaintext
#
|
|
# VERSION 2 - DO NOT REMOVE THIS LINE
|
|
#
|
|
# LoadModule auth_kerb_module modules/mod_auth_kerb.so
|
|
|
|
ProxyRequests Off
|
|
PythonImport ipaserver main_interpreter
|
|
|
|
# ipa-rewrite.conf is loaded separately
|
|
|
|
# This is required so the auto-configuration works with Firefox 2+
|
|
AddType application/java-archive jar
|
|
|
|
<ProxyMatch ^.*/ipa/ui.*$$>
|
|
AuthType Kerberos
|
|
AuthName "Kerberos Login"
|
|
KrbMethodNegotiate on
|
|
KrbMethodK5Passwd off
|
|
KrbServiceName HTTP
|
|
KrbAuthRealms $REALM
|
|
Krb5KeyTab /etc/httpd/conf/ipa.keytab
|
|
KrbSaveCredentials on
|
|
Require valid-user
|
|
ErrorDocument 401 /ipa/errors/unauthorized.html
|
|
RewriteEngine on
|
|
Order deny,allow
|
|
Allow from all
|
|
|
|
RequestHeader set X-Forwarded-Keytab %{KRB5CCNAME}e
|
|
|
|
# RequestHeader unset Authorization
|
|
</ProxyMatch>
|
|
|
|
# The URI's with a trailing ! are those that aren't handled by the proxy
|
|
ProxyPass /ipa/ui http://localhost:8080/ipa/ui
|
|
ProxyPassReverse /ipa/ui http://localhost:8080/ipa/ui
|
|
|
|
# This is where we redirect on failed auth
|
|
Alias /ipa/errors "/usr/share/ipa/html"
|
|
|
|
# For the MIT Windows config files
|
|
Alias /ipa/config "/usr/share/ipa/html"
|
|
|
|
<Location "/ipa/xml">
|
|
AuthType Kerberos
|
|
AuthName "Kerberos Login"
|
|
KrbMethodNegotiate on
|
|
KrbMethodK5Passwd off
|
|
KrbServiceName HTTP
|
|
KrbAuthRealms $REALM
|
|
Krb5KeyTab /etc/httpd/conf/ipa.keytab
|
|
KrbSaveCredentials on
|
|
Require valid-user
|
|
ErrorDocument 401 /ipa/errors/unauthorized.html
|
|
|
|
SetHandler python-program
|
|
PythonInterpreter main_interpreter
|
|
PythonHandler ipaserver::xmlrpc
|
|
|
|
PythonDebug Off
|
|
|
|
PythonOption IPADebug Off
|
|
|
|
# this is pointless to use since it would just reload ipaxmlrpc.py
|
|
PythonAutoReload Off
|
|
</Location>
|
|
|
|
# Do no authentication on the directory that contains error messages
|
|
<Directory "/usr/share/ipa/html">
|
|
AllowOverride None
|
|
Satisfy Any
|
|
Allow from all
|
|
</Directory>
|
|
|
|
# Protect our CGIs
|
|
<Directory /var/www/cgi-bin>
|
|
AuthType Kerberos
|
|
AuthName "Kerberos Login"
|
|
KrbMethodNegotiate on
|
|
KrbMethodK5Passwd off
|
|
KrbServiceName HTTP
|
|
KrbAuthRealms $REALM
|
|
Krb5KeyTab /etc/httpd/conf/ipa.keytab
|
|
KrbSaveCredentials on
|
|
Require valid-user
|
|
ErrorDocument 401 /ipa/errors/unauthorized.html
|
|
</Directory>
|
|
|
|
#Alias /ipatest "/usr/share/ipa/ipatest"
|
|
|
|
#<Directory "/usr/share/ipa/ipatest">
|
|
# AuthType Kerberos
|
|
# AuthName "Kerberos Login"
|
|
# KrbMethodNegotiate on
|
|
# KrbMethodK5Passwd off
|
|
# KrbServiceName HTTP
|
|
# KrbAuthRealms $REALM
|
|
# Krb5KeyTab /etc/httpd/conf/ipa.keytab
|
|
# KrbSaveCredentials on
|
|
# Require valid-user
|
|
# ErrorDocument 401 /ipa/errors/unauthorized.html
|
|
#
|
|
# SetHandler mod_python
|
|
# PythonHandler test_mod_python
|
|
#
|
|
# PythonDebug Off
|
|
#
|
|
#</Directory>
|