~dricottone/huttese

ref: 3792612e41649738053ff29f84fea07f0dc0cb17 huttese/etc/nginx/http.d/todo.conf -rw-r--r-- 566 bytes
3792612eDominic Ricottone Initial commit 2 years ago
                                                                                
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
server {
	listen 8080;
	gzip on;
	gzip_types text/css text/html;
	server_name todo.intra.dominic-ricottone.com;

	client_max_body_size 100M;

	location / {
		proxy_pass http://localhost:5003;
		include headers.conf;
		add_header Content-Security-Policy "default-src 'none'; style-src 'self' 'unsafe-inline'; img-src * data:; script-src 'self' 'unsafe-inline'" always;
		include web.conf;
	}

	location /query {
		proxy_pass http://localhost:5103;
		include graphql.conf;
	}

	location /static {
		root /usr/lib/python3.9/site-packages/todosrht;
		expires 30d;
	}
}