forked from Haxxnet/Compose-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
30 lines (25 loc) · 807 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
server {
listen 80;
server_name nginx.example.com;
root /var/www/;
index index.html index.php;
#error_page 404 /error/404.html;
client_max_body_size 10M; # change this
#set_real_ip_from 172.16.0.0/12;
#set_real_ip_from 192.168.0.0/16;
real_ip_header X-Forwarded-For;
proxy_hide_header X-Powered-By;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PHP_VALUE "error_log=/etc/nginx/conf.d/php_error.log";
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
include fastcgi_params;
}
server_tokens off;
etag off;
}