json-c: add 32 bit library, needed in order to be able to build fontconfig in 32...
[oi-userland.git] / components / web / apache24 / patches / info.conf.in.patch
blobb87a0f2657cd8215cff9bfd61b81075a69976155
1 --- docs/conf/extra/httpd-info.conf.in.~1~ 2010-06-15 15:05:13.000000000 +0400
2 +++ docs/conf/extra/httpd-info.conf.in 2014-02-25 13:48:21.670036530 +0400
3 @@ -11,10 +11,12 @@
4 # with the URL of http://servername/server-status
5 # Change the ".example.com" to match your domain to enable.
7 +<IfModule mod_status.c>
8 <Location /server-status>
9 SetHandler server-status
10 - Require host .example.com
11 - Require ip 127
12 + #Require host .example.com
13 + # Allow access from localhost
14 + Require ip 127.0.0.1
15 </Location>
18 @@ -23,14 +25,18 @@
19 # Off) when the "server-status" handler is called. The default is Off.
21 #ExtendedStatus On
22 +</IfModule>
25 # Allow remote server configuration reports, with the URL of
26 # http://servername/server-info (requires that mod_info.c be loaded).
27 # Change the ".example.com" to match your domain to enable.
29 +<IfModule mod_status.c>
30 <Location /server-info>
31 SetHandler server-info
32 - Require host .example.com
33 - Require ip 127
34 + #Require host .example.com
35 + # Allow access from localhost
36 + Require ip 127.0.0.1
37 </Location>
38 +</IfModule>