(Apologies if this is double posted, but I don't see the post in the group...unless perhaps it's moderated?)
(i.e. HTTP only, path based, no virtual host, port 80 to port 9001)
Any suggestions for the proxy/rewrites?
Would it be easier to create a base URL configuration param in settings.json and submit that as a patch?
Any reason that hasn't been done already?
Thanks,
Tim
P.S. Some of the NGINX config stuff I've tried...
location ^~ /p/ {
proxy_set_header Host $host;
proxy_buffering off;
}
location ^~ /pad {
rewrite /pad/(.*) /$1 break;
proxy_redirect / /pad/;
proxy_set_header Host $host;
proxy_buffering off;
}