freeipa/smartproxy/ipa-smartproxy-apache.conf
Rob Crittenden 64dcb1ec76 Implement an IPA Foreman smartproxy server
This currently server supports only host and hostgroup commands for
retrieving, adding and deleting entries.

The incoming requests are completely unauthenticated and by default
requests must be local.

Utilize GSS-Proxy to manage the TGT.

Configuration information is in the ipa-smartproxy man page.

Design: http://www.freeipa.org/page/V3/Smart_Proxy

https://fedorahosted.org/freeipa/ticket/4128

Reviewed-By: Petr Viktorin <pviktori@redhat.com>
2014-04-30 21:57:27 +02:00

31 lines
701 B
Plaintext

Listen 8090
<VirtualHost *:8090>
WSGIDaemonProcess smartproxy user=smartproxy processes=2 threads=1
WSGIProcessGroup smartproxy
WSGIScriptAlias /realm /usr/share/ipa/smartproxy/ipa-smartproxy.py
WSGIScriptAlias /features /usr/share/ipa/smartproxy/ipa-smartproxy.py
WSGIScriptAlias /ipa/smartproxy /usr/share/ipa/smartproxy/ipa-smartproxy.py
<Location "/realm">
Satisfy Any
Order Deny,Allow
Allow from all
</Location>
<Location "/features">
Satisfy Any
Order Deny,Allow
Allow from all
</Location>
<Location "/ipa/smartproxy">
Satisfy Any
Order Deny,Allow
Allow from all
</Location>
</VirtualHost>