Nginx 配置求助,如何讲 wss 和 https 同时指向一个域名

2020-06-16 15:16:09 +08:00
 oxogenesis
当前配置见
https://github.com/oxogenesis/oxo-chat-server

https 指向 https://oxo-chat-server.com
wss 指向 wss://ru.oxo-chat-server.com

问题:如何把两者都指向 ru.oxo-chat-server.com
谢谢!
1253 次点击
所在节点    NGINX
2 条回复
codehz
2020-06-16 15:30:42 +08:00
oxogenesis
2020-06-16 15:54:11 +08:00
server {
listen 443 ssl;
server_name ru.oxo-chat-server.com;
ssl_certificate /etc/letsencrypt/live/ru.oxo-chat-server.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/ru.oxo-chat-server.com/privkey.pem;
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
root /usr/share/nginx/html;
index index.html index.htm;

server_name localhost;

location / {
try_files /nonexistent @$http_upgrade;
}

location @websocket {
proxy_pass http://localhost:3000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_connect_timeout 1d;
proxy_send_timeout 1d;
proxy_read_timeout 1d;
}

location @ {
proxy_pass http://localhost:8000/;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forward-Proto http;
proxy_set_header X-Nginx-Proxy true;
proxy_redirect off;
}
}

server {
listen 80;
server_name ru.oxo-chat-server.com;
return 301 https://$host$request_uri;
}



# nginx -t
nginx: [emerg] "proxy_pass" cannot have URI part in location given by regular expression, or inside named location, or inside "if" statement, or inside "limit_except" block in /etc/nginx/sites-enabled/default:19
nginx: configuration file /etc/nginx/nginx.conf test failed

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/682064

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX