Phorcys
Phorcys
CCoder.com
Created by Alex{ ᵐᶜ } on 12/13/2024 in #help
The ping place is not working
No description
70 replies
CCoder.com
Created by Alex{ ᵐᶜ } on 12/13/2024 in #help
The ping place is not working
This is the latency section, there is a health page in the Administration section
70 replies
CCoder.com
Created by Some Dinosaur on 12/23/2024 in #help
Failed to pull GitHub private repo
yes
24 replies
CCoder.com
Created by Some Dinosaur on 12/23/2024 in #help
Failed to pull GitHub private repo
I am away right now but see https://github.com/coder/envbuilder/issues/333 for more info
24 replies
CCoder.com
Created by Some Dinosaur on 12/23/2024 in #help
Failed to pull GitHub private repo
whoops sorry, I didn't see you're using envbuilder
24 replies
CCoder.com
Created by bicboi5622 on 11/26/2024 in #help
Workspace unhealthy + Advise on big picture
so you should set your CODER_ACCESS_URL to http://<IP>, but I would advise that you quickly replace the http traffic with https using a self-signed cert
17 replies
CCoder.com
Created by bicboi5622 on 11/26/2024 in #help
Workspace unhealthy + Advise on big picture
the access URL is what is being passed to GCP, so it has to be something that you can access from the outside
17 replies
CCoder.com
Created by bicboi5622 on 11/26/2024 in #help
Workspace unhealthy + Advise on big picture
since you are using GCP, your Coder instance needs to be accessible from the outside world
17 replies
CCoder.com
Created by Alex{ ᵐᶜ } on 12/13/2024 in #help
The ping place is not working
okay, could you send a screenshot of the health page? (it's under Administration)
70 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
please let me know if you ever figure this out!
24 replies
CCoder.com
Created by Chris2pi on 11/24/2024 in #help
Creating a JupyterLab instance
closing as stale, feel free to reopen
7 replies
CCoder.com
Created by BilTal on 11/26/2024 in #help
Air-gapped Coder VS Code Desktop - Failed to download VS Code Server
closing as stale, feel free to reopen
10 replies
CCoder.com
Created by Zebrazinker on 11/19/2024 in #help
Devcontainer with GPU access
closing as stale, feel free to reopen
9 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
as a last resort, maybe try removing the exploit blocking stuff to see if it is blocking anything?
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
sorry for not being able to help
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
try removing the first block that has
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
# ------------------------------------------------------------
# *.example.com, example.com
# ------------------------------------------------------------

map $scheme $hsts_header {
https "max-age=63072000; preload";
}

server {
set $forward_scheme http;
set $server "172.20.0.1";
set $port 7080;

listen 1233;
listen [::]:1233;

listen 1234 ssl http2;
listen [::]:1234 ssl http2;

server_name *.example.com example.com;

# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-7/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-7/privkey.pem;

# Block Exploits
include conf.d/include/block-exploits.conf;

# Force SSL
include conf.d/include/force-ssl.conf;

# ---- HERE ----
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;

access_log /data/logs/proxy-host-1_access.log proxy;
error_log /data/logs/proxy-host-1_error.log warn;

location / {
proxy_pass http://172.20.0.1:7080;
proxy_http_version 1.1;
# ---- HERE ----
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
}

# Custom
include /data/nginx/custom/server_proxy[.]conf;
}
# ------------------------------------------------------------
# *.example.com, example.com
# ------------------------------------------------------------

map $scheme $hsts_header {
https "max-age=63072000; preload";
}

server {
set $forward_scheme http;
set $server "172.20.0.1";
set $port 7080;

listen 1233;
listen [::]:1233;

listen 1234 ssl http2;
listen [::]:1234 ssl http2;

server_name *.example.com example.com;

# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-7/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-7/privkey.pem;

# Block Exploits
include conf.d/include/block-exploits.conf;

# Force SSL
include conf.d/include/force-ssl.conf;

# ---- HERE ----
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;

access_log /data/logs/proxy-host-1_access.log proxy;
error_log /data/logs/proxy-host-1_error.log warn;

location / {
proxy_pass http://172.20.0.1:7080;
proxy_http_version 1.1;
# ---- HERE ----
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
}

# Custom
include /data/nginx/custom/server_proxy[.]conf;
}
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
you have the same header twice
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
oh wait
24 replies
CCoder.com
Created by Katorly on 12/3/2024 in #help
Need help configuring Coder WebSocket behind a proxy with non-standard ports
i'm not sure how to assist either, sorry
24 replies