-
-
Notifications
You must be signed in to change notification settings - Fork 115
reverse proxy
Senan Kelly edited this page Apr 12, 2023
·
3 revisions
for path routing, gonic supports a proxy-prefix
config file option, env var, or command line argument
for example with GONIC_PROXY_PREFIX=gonic
location /gonic/ {
proxy_pass http://localhost:4747/;
# set "Secure" cookie if using HTTPS
proxy_cookie_path / "/; Secure";
# set "X-Forwarded-Host" header for last.fm connection callback
proxy_set_header X-Forwarded-Host $host;
}
<Location "/gonic" >
ProxyPass http://localhost:4747
ProxyPassReverse http://localhost:4747/gonic
ProxyPassReverseCookiePath "/" "/gonic"
</Location>
coming soon
coming soon