From 32a8465a12bb684dfbf82eea144eb88599949851 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 4 Jan 2019 03:33:23 -0700 Subject: [PATCH] added php-enabled version of nginx.conf --- etc/nginx/nginx.php.conf | 61 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 etc/nginx/nginx.php.conf diff --git a/etc/nginx/nginx.php.conf b/etc/nginx/nginx.php.conf new file mode 100644 index 0000000..4edeb69 --- /dev/null +++ b/etc/nginx/nginx.php.conf @@ -0,0 +1,61 @@ +####### +### NGINX basic configuration +### includes PHP upstream processor +####### + +user www-data; +worker_processes auto; +pid /var/run/nginx.pid; + +error_log /var/log/nginx/error.log warn; + +# include any dynamically linked modules +include /etc/nginx/modules/*.conf; + +events { + worker_connections 1024; + multi_accept off; + use epoll; +} + +http { + server_names_hash_bucket_size 64; + default_type text/plain; + charset utf-8; + + include /etc/nginx/mime.types; + + # include enabled configuration options from cond.d/enabled/*.conf + include /etc/nginx/conf.d/enabled/*.conf; + + # set default index options for all sites + index index.html index.htm; + + # set default document root for all sites + root /usr/share/nginx/html; + + # PHP handler + upstream php-handler { + server 127.0.0.1:9000; + } + + # logging options + log_format main '$remote_addr - $remote_user [$time_local] $request ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for" ' + '"$host" server="$server_name" ' + 'reqtime="$request_time" ' + 'uaddr="$upstream_addr" ustat="$upstream_status" ' + 'utime="$upstream_response_time" ulen="$upstream_response_length" ' + 'cache="$upstream_cache_status"'; + + # turn logging off by default (performance reasons, uncomment for + # troubleshooting) + #access_log /var/log/nginx/access.log main; + access_log off; + + server_tokens off; + + # include enabled server blocks from /etc/nginx/enabledSites/*.conf + include /etc/nginx/enabledSites/*.conf; +}