Request path should be agnostic? #5674
-
Hi, Just trying to run several containers behind a reverse proxy like Nginx. Thus, I can add rules to forward to them base on path. The first request goes well, but then some followed requests that require static files, javascript files, etc.. are removing the base path, so those cannot reach the container. As I understand base-path or base-url parameter was removed, so how this approach can be done? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Not sure now if this is even a bug like it was mentioned in the past? |
Beta Was this translation helpful? Give feedback.
-
I've found the issue. I think from end user experience it doesn't make sense that... |
Beta Was this translation helpful? Give feedback.
I've found the issue.
So, it seems I need to add one more slash "/" at the end of every requests, otherwise code server removes the whole base URL.
Is that expected behavior?
I think from end user experience it doesn't make sense that...
https://my-hostname:my-port/vscode1 does not work, but
https://my-hostname:my-port/vscode1/ it does