From 710153d18f8d7b8f47088175dc207d6317304365 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 21 Feb 2015 11:24:31 +0100 Subject: php-pecl-apm: 2.0.0 - New package --- php-pecl-apm.nginx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 php-pecl-apm.nginx (limited to 'php-pecl-apm.nginx') diff --git a/php-pecl-apm.nginx b/php-pecl-apm.nginx new file mode 100644 index 0000000..fcde469 --- /dev/null +++ b/php-pecl-apm.nginx @@ -0,0 +1,26 @@ +# 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; + } +} -- cgit