mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
31 lines
701 B
Plaintext
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>
|