我目前有一个带有许多子域的NGINX配置。我在端口27845上启动了一个mumble-server,如果我尝试使用<ip_adress>:27845在Mumble客户端上访问它,它就会工作。
我尝试使用NGINX在使用proxy_pass http://localhost:27845的80端口上提供一个子域mumble.example.com。但是当我尝试在我的Mumble客户端上连接到mumble.example.com时,它显示:
This server is using an older encryption standard, and is no longer supported by modern versions of Mumble.
如何在80端口使用NGINX的有效SSL配置?我可以只使用端口80和443,443用于OpenVPN。
子域名conf NGINX:
server {
server_name mumble.example.com;
ssl on;
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
location / {
proxy_pass http://localhost:27845;
}
}发布于 2016-07-13 10:46:12
Nginx是一个HTTP代理,但mumble协议是基于TCP/UDP的,所以我不认为Nginx可以代理杂音服务。
https://stackoverflow.com/questions/35878760
复制相似问题