summaryrefslogtreecommitdiff
path: root/nginx.php
diff options
context:
space:
mode:
authorPhil Burton <phil@pgburton.com>2017-08-22 10:10:29 +0100
committerPhil Burton <phil@pgburton.com>2017-08-22 10:10:29 +0100
commit7b1e62d0cbc3519c469b2afd4da712125707de66 (patch)
tree06ee38c18849f9b0c85c2eb82bded824e2ff34e6 /nginx.php
parenta4170353515c254ab7404117e7d9b3f15887214a (diff)
parent47b154758e789e75ec597d88540cdb7f4e352225 (diff)
Merge branch 'master' of www.blatech.co.uk:FBeans/dipper
Diffstat (limited to 'nginx.php')
-rw-r--r--nginx.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/nginx.php b/nginx.php
deleted file mode 100644
index e362fb3..0000000
--- a/nginx.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-return [
- "server {
- listen *;
- server_name %s;
-
- access_log /web/sites/%s/logs/%s.access_log main;
- error_log /web/sites/%s/logs/%s.error_log info;
-
- root /web/sites/%s/web;
-
- location ~ \.php$ {
- # Test for non-existent scripts or throw a 404 error
- # Without this line, nginx will blindly send any request ending in .php to php-fpm
- try_files \$uri =404;
- include /etc/nginx/fastcgi.conf;
- fastcgi_pass unix:/run/php7-fpm.sock;
- }
-}"
-];