summaryrefslogtreecommitdiffstats
path: root/smartproxy/ipa-smartproxy-apache.conf
blob: 53a62691fce3c96006f0af86f0e6e6d86faac478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>