server {
listen 8080;
gzip on;
gzip_types text/css text/html;
server_name lists.intra.dominic-ricottone.com;
client_max_body_size 100M;
location / {
proxy_pass http://localhost:5006;
include headers.conf;
add_header Content-Security-Policy "default-src 'none'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; script-src 'self' 'unsafe-inline'";
include web.conf;
}
location /query {
proxy_pass http://localhost:5106;
include graphql.conf;
}
location /static {
root /usr/lib/python3.9/site-packages/listssrht;
expires 30d;
}
}