dz1-spatial-query/stac-fastapi-pgstac/nginx.conf

21 lines
479 B
Nginx Configuration File
Raw Permalink Normal View History

2025-07-03 20:29:02 +08:00
events {}
http {
server {
listen 80;
location /api/v1/pgstac {
rewrite ^/api/v1/pgstac(.*)$ $1 break;
proxy_pass http://app-nginx:8082;
proxy_set_header HOST $http_host;
proxy_set_header Referer $http_referer;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
proxy_redirect off;
}
}
}