right-tree/nginx.production.conf
2021-11-29 10:16:24 +13:00

30 lines
676 B
Text

http {
server {
listen 80;
listen 443 ssl;
index index.html;
include /etc/nginx/mime.types;
proxy_set_header Host $http_host;
ssl_certificate /etc/letsencrypt/live/righttree.maps.net.nz/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/righttree.maps.net.nz/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/righttree.maps.net.nz/chain.pem;
location / {
root /etc/nginx/html/build;
}
location /staticfiles {
root /etc/nginx/html/;
}
location ~* ^/(api|admin) {
proxy_pass http://backend:8000;
}
}
}
events {
# configuration of connection processing
}