File README.SuSE of Package apache2-mod_proxy_html
1
This is readme for apache2 mod_proxy_html
2
3
Before you can use this module you should do
4
5
1)
6
cp -a /etc/apache2/conf.d/mod_proxy_html.conf.in /etc/apache2/conf.d/mod_proxy_html.conf
7
8
2) check for the following modules: (!!! keep order of "proxy" and "proxy_http" !!!)
9
- proxy
10
- proxy_http
11
- headers
12
13
for i in proxy proxy_http headers; do
14
if [ `/usr/sbin/a2enmod -q $i; echo $?` = 1 ]; then
15
/usr/sbin/a2enmod $i
16
fi
17
done
18
19
3) Now you can restart you apache
20
rcapache2 restart
21