Replies: 1 comment
-
Right now disabling the proxy still rewrites the URL, I think you can set |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, i have code-server running in a container with this composer:
version: "2.1" services: code-server: image: lscr.io/linuxserver/code-server:latest container_name: code-server environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - PASSWORD= #optional - HASHED_PASSWORD= #optional - SUDO_PASSWORD= #optional - SUDO_PASSWORD_HASH= #optional #- PROXY_DOMAIN= #optional - CS_DISABLE_PROXY=TRUE - DEFAULT_WORKSPACE=/config/workspace #optional volumes: - ./vscode:/config ports: - 8443:8443 restart: unless-stopped
I want disable proxy because i cant open my projects in browser, its opening in : http://localhost:8443/proxy/4001/ and i cant run my application.
Beta Was this translation helpful? Give feedback.
All reactions