]> git.pld-linux.org Git - packages/php-pecl-xhprof.git/blob - apache.conf
support building for multiple php versions
[packages/php-pecl-xhprof.git] / apache.conf
1 Alias /xhprof /usr/share/xhprof/xhprof_html
2
3 <Directory /usr/share/xhprof/xhprof_html>
4         <IfModule mod_authz_core.c>
5                 # Apache 2.4
6                 Require local
7         </IfModule>
8         <IfModule !mod_authz_core.c>
9                 # Apache 2.2
10                 Order Deny,Allow
11                 Deny from All
12                 Allow from 127.0.0.1
13                 Allow from ::1
14         </IfModule>
15 </Directory>
This page took 0.063556 seconds and 3 git commands to generate.