-
I am looking to add a prefix path for code-server instead of serving it via Basically, I am looking for something like this: If there's already a way to achieve this, please let me know. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
As of now, without this, I am getting (My reverse proxy-server strips the |
Beta Was this translation helpful? Give feedback.
-
OK. So if I explicitly go to Also, only |
Beta Was this translation helpful? Give feedback.
-
Hmmm...I believe this already works with something like Caddy. Here's an example:
http://localhost:8082/code/* {
uri strip_prefix /code
reverse_proxy 127.0.0.1:8080
}
Is this what you want or am I missing something?
I wasn't sure about this part but maybe that's something we can add to the Caddyfile |
Beta Was this translation helpful? Give feedback.
Hmmm...I believe this already works with something like Caddy. Here's an example:
Caddyfile
code-server
caddy run
to start Caddyhttp://localhost:8082/code/login
and then loginIs this what you want or am I missing something?
I wasn't sure about this part but maybe that's something we can add to the Caddyfile