-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
48 lines (39 loc) · 1.16 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# based on
# https://www.linode.com/docs/web-servers/nginx/tls-deployment-best-practices-for-nginx/
# https://superuser.com/a/1250447
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main escape=json
'{'
'"timestamp":"$time_iso8601",'
'"proxy":"$upstream_addr",'
'"httpRequest":{'
'"requestMethod":"$request_method",'
'"requestUrl":"$host$request_uri",'
'"status":$status,'
'"requestSize":"$request_length",'
'"responseSize":"$upstream_response_length",'
'"userAgent":"$http_user_agent",'
'"remoteIp":"$remote_addr",'
'"protocol":"$server_protocol"'
'}'
'}';
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log debug;
sendfile on;
#tcp_nopush on;
gzip on;
gzip_static on;
gzip_types application/json text/css text/javascript;
include /etc/nginx/conf.d/*.conf;
server_tokens off;
keepalive_timeout 75;
}