aboutsummaryrefslogtreecommitdiffstats
path: root/community/patchwork/nginx-patchwork.conf
blob: 575bc3e0ba0ef3e44d325f2845473b3a98601451 (plain)
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
30
31
32
33
server {
	listen	80;
	server_name	domain.tld;
	access_log	/var/log/nginx/patchwork.log;
	error_log	/var/log/nginx/patchwork-error.log;

	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 65;
	types_hash_max_size 2048;

	gzip on;
	gzip_proxied any;
	gzip_types text/plain text/css text/javascript application/x-javascript
		text/xml application/xml image/svg+xml
		application/vnd.ms-fontobject application/x-font-ttf font/opentype;

	location = favicon.ico { 
		access_log off; 
		log_not_found off;
	}

        location /static {
		alias /usr/share/webapps/patchwork/htdocs;
		expires 3h;
        }

        location / {
            include uwsgi_params;
            uwsgi_pass unix:/run/uwsgi/patchwork.sock;
            uwsgi_modifier1 30;
        }
}