Replies: 2 comments 2 replies
-
This also happens with gitlens |
Beta Was this translation helpful? Give feedback.
0 replies
-
This means your browser is rejecting your certificate. Is it self-signed? You will need to make your system trust the certificate, or add an exception in your browser's settings. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I get the following error for some extensions
Error loading webview: Error: Could not register service worker: SecurityError: Failed to register a ServiceWorker: The provided scriptURL ('https://domain.com/stable-6f3d0a7e5ae5f6623e1963e96adabc3287386006/static/out/vs/workbench/contrib/webview/browser/pre/service-worker.js?v=4&vscode-resource-base-authority=vscode-resource.vscode-cdn.net&remoteAuthority=domain.com') violates the Content Security Policy..
This is my docker-compose.yml file
version: '3.8'
services:
code-server:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
restart: unless-stopped
ports:
- "10400:8443"
volumes:
- ./code_server_config:/config
environment:
- PUID=1000
- PGID=1000
- TZ=America/Bogota
- PASSWORD=*****************
- SUDO_PASSWORD=*********
- DEFAULT_WORKSPACE=/config/workspace
- PROXY_DOMAIN=domain.com
- DOCKER_MODS=lscr.io/linuxserver/mods:code-server-pnpm|lscr.io/linuxserver/mods:code-server-nodejs
Beta Was this translation helpful? Give feedback.
All reactions