blob: 2d86ebb0f9d3b8d4a3282cf1fbd5ac61df582ec4 [file] [log] [blame]
Sergio Slobodrianff52e1b2017-04-24 12:39:08 -04001
2#user nginx;
3worker_processes 1;
4
5error_log /var/log/nginx/error.log warn;
6pid /var/run/nginx.pid;
7
8
9events {
10 worker_connections 1024;
11}
12
13
14http {
15 include /etc/nginx/mime.types;
16 default_type application/octet-stream;
17
18 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
19 '$status $body_bytes_sent "$http_referer" '
20 '"$http_user_agent" "$http_x_forwarded_for"';
21
22 access_log /var/log/nginx/access.log main;
23
24 sendfile on;
25 #tcp_nopush on;
26
27 keepalive_timeout 65;
28
29 #gzip on;
30
31 include /nginx_config/conf.d/*.conf;
32}