summaryrefslogtreecommitdiffstats
path: root/httpd.conf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-03-22 10:48:08 +0100
committerRemi Collet <fedora@famillecollet.com>2014-03-22 10:48:08 +0100
commit092a55bfc570a7b348893791c58e246d602854ed (patch)
tree672c5ed2edfb258abc53c73c4cb8534f4ae03c4c /httpd.conf
parentca3138335908e4f75a5827ba0194c03a8f83799e (diff)
php-pecl-mysqlnd-qc: SCL + 5.6 patch + move doc + test + panel subpackage
Diffstat (limited to 'httpd.conf')
-rw-r--r--httpd.conf17
1 files changed, 17 insertions, 0 deletions
diff --git a/httpd.conf b/httpd.conf
new file mode 100644
index 0000000..07f1374
--- /dev/null
+++ b/httpd.conf
@@ -0,0 +1,17 @@
+# Mysqlnd Query Cache Control Panel
+Alias /mysqlnd-qc @DATADIR@/mysqlnd-qc
+
+<Directory @DATADIR@/mysqlnd-qc>
+ <IfModule mod_authz_core.c>
+ # Apache 2.4
+ Require local
+ </IfModule>
+ <IfModule !mod_authz_core.c>
+ # Apache 2.2
+ Order Deny,Allow
+ Deny from All
+ Allow from 127.0.0.1
+ Allow from ::1
+ </IfModule>
+</Directory>
+