summaryrefslogtreecommitdiff
path: root/config/nginx-default.conf
blob: fd3e2f14efc6d7b7bf84262f6e8bc3be6cc65448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {
	server_name _;
	listen 8080 default_server;
	listen [::]:8080 default_server;
	client_max_body_size 20M;

	root /var/www/mat2-web;

	location / { try_files $uri @yourapplication; }
	location @yourapplication {
		include uwsgi_params;
		uwsgi_pass unix:/var/www/mat2-web/mat2-web.sock;
	}
}