main
conf 31 lines 545 Bytes
Raw
1 daemon off;
2 worker_processes 2;
3 user www-data;
4
5 events {
6 use epoll;
7 worker_connections 128;
8 }
9
10 error_log /var/log/nginx/error.log info;
11
12 http {
13 server_tokens off;
14 include mime.types;
15 charset utf-8;
16
17 access_log /var/log/nginx/access.log combined;
18
19 server {
20 server_name 127.0.0.1:31735;
21 listen 127.0.0.1:31735;
22
23 error_page 500 502 503 504 /50x.html;
24
25 location / {
26 root /;
27 }
28
29 }
30
31 }