Projekt

Obecné

Profil

Stáhnout (429 Bajtů) Statistiky
| Větev: | Revize:
1
user nginx;
2
worker_processes 4;
3
daemon off;
4

    
5
error_log /var/log/nginx/error.log warn;
6
pid /var/run/nginx.pid;
7

    
8
events {
9
    worker_connections 1024;
10
}
11

    
12
http {
13
    include /etc/nginx/mime.types;
14
    default_type application/octet-stream;
15
    access_log /var/log/nginx/access.log;
16
    sendfile on;
17
    keepalive_timeout 65;
18

    
19
    include /etc/nginx/conf.d/*.conf;
20
    include /etc/nginx/sites-available/*.conf;
21
}
(2-2/2)