summaryrefslogtreecommitdiffstats
path: root/php-pecl-apm.nginx
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-03-16 10:41:39 +0100
committerRemi Collet <fedora@famillecollet.com>2015-03-16 10:41:39 +0100
commit9c9e9ca8c10ffa3e294c5d113e49d664380e9f9f (patch)
tree83ebd08ea4a4ca44e7a005d8049f5fe1c57b6dd2 /php-pecl-apm.nginx
parent7bcfaf8fd433cd7bdff0accaf186a038770c430e (diff)
apm-web: New package, split off php-pecl-apm
Diffstat (limited to 'php-pecl-apm.nginx')
-rw-r--r--php-pecl-apm.nginx26
1 files changed, 0 insertions, 26 deletions
diff --git a/php-pecl-apm.nginx b/php-pecl-apm.nginx
deleted file mode 100644
index fcde469..0000000
--- a/php-pecl-apm.nginx
+++ /dev/null
@@ -1,26 +0,0 @@
-# APM (Alternative PHP Monitor)
-#
-# Allows only localhost by default
-#
-
-location = /@ALIAS@ {
- alias @SHARE@/@ALIAS@/;
-}
-
-location /@ALIAS@/ {
- root @SHARE@;
- index index.php index.html;
-
- location ~ ^/@ALIAS@/(.+\.php)$
- {
- allow 127.0.0.1;
- allow ::1;
- deny all;
-
- try_files $uri =404;
- fastcgi_intercept_errors on;
- include fastcgi_params;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- fastcgi_pass php-fpm;
- }
-}