Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nginx ws invalid URL prefix

First time with nginx.
I have a nodejs WebSocket server listening at ws://service_name:3600.
I'm using docker-compose:

version: "2"
services:
   # stuff

   service_name:
      image: imagename
      ports:
        - 3600:3600
      links:
        # stuff
        - proxy

   proxy:
     image: image-from-nginx-with-custom-config
     ports:
       - 80:80
       - 443:443
       - 8443:8443

My config:

// stuff 

server {
    listen          8443;
    server_name     localhost;
    ssl on;

    ssl_certificate      /etc/nginx/certs/crt.pem;
    ssl_certificate_key  /etc/nginx/certs/key.pem;

    keepalive_timeout    60;

    proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
    proxy_set_header Host $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 https;

    location / {
        proxy_pass ws://service_name:3600;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }
}

I get nginx: [emerg] invalid URL prefix in /etc/nginx/conf.d/default.conf at startup.
So nginx doesn't recognize ws, what do I do?

like image 400
andr Avatar asked Oct 18 '17 09:10

andr


1 Answers

In nginx you still need to use http for protocol in your url and not ws.

proxy_pass http://service_name:3600;

The ws and wss protocol is required for browser, on server side you add below to handle the websockets over http

proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; 
like image 117
Tarun Lalwani Avatar answered Oct 18 '22 21:10

Tarun Lalwani