赞
踩
server { listen 443 ssl; #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。 server_name xxx.xxx.com; #将localhost修改为您证书绑定的域名,例如:www.example.com。 ssl on; ssl_certificate /usr/local/nginx/conf/xxx.xxx.com.pem; #将domain name.pem替换成您证书的文件名。 ssl_certificate_key /usr/local/nginx/conf/xxx.xxx.com.key; #将domain name.key替换成您证书的密钥文件名。 ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用该协议进行配置。 ssl_prefer_server_ciphers on; location /websocket/ { proxy_pass http://xx.xx.xxx.xxx:2222; #以下三个配置加上即可开始wss服务 proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。