Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 33786d3b

Přidáno uživatelem Tomáš Ballák před asi 4 roky(ů)

fix #2

Zobrazit rozdíly:

docker/nginx/nginx.conf
1
user  nginx;
2
worker_processes  4;
1
user nginx;
2
worker_processes 4;
3 3
daemon off;
4 4

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

  
8 8
events {
9
    worker_connections  1024;
9
    worker_connections 1024;
10 10
}
11 11

  
12 12

  
13 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;
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 19

  
20 20
    include /etc/nginx/conf.d/*.conf;
21 21
    include /etc/nginx/sites-available/*.conf;

Také k dispozici: Unified diff