mletterle (owner)

Revisions

gist: 66388 Download_button fork
public
Public Clone URL: git://gist.github.com/66388.git
Embed All Files: show embed
integrity & Apache #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
enable mod_proxy
install and enable mod_proxy_html
 
example Apache.conf reverse proxying */integrity to the integrity web server:
 
<VirtualHost *>
       <Proxy *>
            Order deny,allow
            Allow from all
        </Proxy>
       
        RedirectMatch ^/integrity$ /integrity/
        ProxyRequests Off
        ProxyPass /integrity/ http://localhost:8910/
        ProxyHTMLURLMap http://localhost:8910 /integrity
 
        <Location /integrity>
            ProxyPassReverse /
            SetOutputFilter proxy-html
            ProxyHTMLURLMap / /integrity/
            ProxyHTMLURLMap /integrity/ /integrity
        </Location>
</VirtualHost>