Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,12 @@ server {
proxy_send_timeout 36000s;
}

location ~ ^/cool/(.*)/ws$ {
location ^~ /cool/ { {

@v-scharf v-scharf Jul 7, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

extra { in config - please remove it

sudo nginx -t 2026/07/07 06:39:27 [emerg] 2245090#2245090: unexpected "{" in /etc/nginx/sites-enabled/opencloud:74 nginx: configuration file /etc/nginx/nginx.conf test failed

proxy_pass http://127.0.0.1:9980;

proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Connection "upgrade";

proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
Expand Down