/ fwd to idx

fro/pi3#59
This commit is contained in:
fro
2025-12-30 10:01:28 -05:00
parent 312f58a857
commit d49687e12e

View File

@@ -69,13 +69,13 @@ server {
add_header Content-Location /rpc/$upstream_http_content_location; add_header Content-Location /rpc/$upstream_http_content_location;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_pass http://postgrest/rpc/fwd?p_shortcode=$1&p_dbg=true; proxy_pass http://postgrest/rpc/idx?p_shortcode=$1&p_dbg=true;
} }
# /shortcode | normal mode # /shortcode | normal mode
location ~ ^/([A-Za-z0-9]+) { location ~ ^/([A-Za-z0-9]+) {
# https://stackoverflow.com/questions/53353572/proxy-pass-cannot-have-uri-part-in-location-given-by-regular-expression # https://stackoverflow.com/questions/53353572/proxy-pass-cannot-have-uri-part-in-location-given-by-regular-expression
rewrite ^/([A-Za-z0-9]+) /rpc/fwd break; rewrite ^/([A-Za-z0-9]+) /rpc/idx break;
default_type application/json; default_type application/json;
proxy_hide_header Content-Location; proxy_hide_header Content-Location;
add_header Content-Location /rpc/$upstream_http_content_location; add_header Content-Location /rpc/$upstream_http_content_location;