From 06ec18af20744d4cb9e898d8cea7640de1e205f4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 16 Mar 2015 10:41:39 +0100 Subject: apm-web: New package, split off php-pecl-apm --- apm-web.httpd | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 apm-web.httpd (limited to 'apm-web.httpd') diff --git a/apm-web.httpd b/apm-web.httpd new file mode 100644 index 0000000..6878614 --- /dev/null +++ b/apm-web.httpd @@ -0,0 +1,22 @@ +# APM (Alternative PHP Monitor) +# +# Allows only localhost by default +# + +Alias /@ALIAS@ @SHARE@/@ALIAS@ + + + AddDefaultCharset UTF-8 + + + # Apache 2.4 + Require local + + + # Apache 2.2 + Order Deny,Allow + Deny from All + Allow from 127.0.0.1 + Allow from ::1 + + -- cgit