Files
bigcapital/docker/nginx/sites/server.template
2023-03-30 03:55:59 +02:00

16 lines
264 B
Plaintext

server {
listen 80 default_server;
location /api {
proxy_pass http://server:${SERVER_PROXY_PORT};
}
location / {
proxy_pass http://webapp;
}
location /.well-known/acme-challenge/ {
root /var/www/letsencrypt/;
log_not_found off;
}
}