Suppress useless nginx error messages in gui
[policy/gui.git] / packages / policy-gui-docker / src / main / docker / etc / nginx / nginx.conf
1 worker_processes  1;
2 pid /var/run/nginx.pid;
3 error_log /dev/stdout warn;
4 events {
5 }
6 http {
7   include       /etc/nginx/mime.types;
8   default_type  application/octet-stream;
9   log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
10                     '$status $body_bytes_sent "$http_referer" '
11                     '"$http_user_agent" "$http_x_forwarded_for"';
12   access_log  /var/log/nginx/access.log  main;
13   sendfile        on;
14   #tcp_nopush     on;
15   keepalive_timeout  65;
16   #gzip  on;
17   include /etc/nginx/conf.d/*.conf;
18 }