summaryrefslogtreecommitdiff
path: root/nginx/stub.php
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2017-08-22 01:07:51 +0100
committerFbenas <philbeansburton@gmail.com>2017-08-22 01:07:51 +0100
commit47b154758e789e75ec597d88540cdb7f4e352225 (patch)
tree3e8ec0a763e2d72534a54e177af292ee7100fbcf /nginx/stub.php
parent3de70e73fb53ada12a4d7d332853253523720511 (diff)
Make sure we write the nginx conf
Diffstat (limited to 'nginx/stub.php')
-rw-r--r--nginx/stub.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/nginx/stub.php b/nginx/stub.php
new file mode 100644
index 0000000..e362fb3
--- /dev/null
+++ b/nginx/stub.php
@@ -0,0 +1,21 @@
+<?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;
+ }
+}"
+];