From 890e52c73ff0e42aeeaab656a0610476dd176504 Mon Sep 17 00:00:00 2001 From: Prabuddha Chakraborty Date: Tue, 9 Feb 2016 14:42:31 +0530 Subject: [PATCH] created php7.conf --- ee/cli/templates/php7.mustache | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ee/cli/templates/php7.mustache diff --git a/ee/cli/templates/php7.mustache b/ee/cli/templates/php7.mustache new file mode 100644 index 00000000..85f3e44b --- /dev/null +++ b/ee/cli/templates/php7.mustache @@ -0,0 +1,10 @@ +# PHP NGINX CONFIGURATION +# DO NOT MODIFY, ALL CHANGES LOST AFTER UPDATE EasyEngine (ee) +location / { + try_files $uri $uri/ /index.php?$args; +} +location ~ \.php$ { + try_files $uri =404; + include fastcgi_params; + fastcgi_pass php7; +}