Projekt

Obecné

Profil

Stáhnout (458 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

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

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