diff --git a/nginx.conf.template b/nginx.conf.template index 522f286..9d64672 100644 --- a/nginx.conf.template +++ b/nginx.conf.template @@ -13,6 +13,13 @@ server { proxy_set_header X-Forwarded-Proto https; } + location /pocketbase/ { + proxy_pass https://${POCKET_BASE_URL}/; + rewrite /pocketbase/(.*) /$1 break; + proxy_ssl_server_name on; + proxy_set_header Host "${POCKET_BASE_URL}"; + proxy_set_header X-Forwarded-Proto https; + } location /appraisal/ { proxy_pass https://${EVEPRAISAL_URL}/; rewrite /appraisal/(.*) /$1 break;