~mika/www.m1kadev.nl

ref: 6c5467bac62a698b5e1acabc60976009e7ca837e www.m1kadev.nl/nginx.conf -rw-r--r-- 583 bytes
6c5467ba — m1ka new thoughts :) 3 months ago
                                                                                
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
user www;
worker_processes auto;

daemon off;

error_log /var/log/nginx/error.log warn;

events {
    worker_connections 1024;
}

http {
    include /etc/nginx/mime.types;
    default_type application/octet-stream;
    sendfile on;
    access_log /var/log/nginx/access.log;
    keepalive_timeout 3000;
    server {
        listen 8080;
        root /data/www;
        index index.html;
        server_name localhost;
        client_max_body_size 32m;
        error_page 500 502 503 503 /50x.html;
        location = /50x.html {
            root /var/lib/nginx/html;
        }
    }
}