2016 - 2024

感恩一路有你

wss网上什么意思 nginx如何同时配置https和wss?

浏览量:3019 时间:2021-04-02 17:37:07 作者:admin

nginx如何同时配置https和wss?

nginx同时配置https和wss代码如下:server{listen443sslserver_namelocalhostsslonroothtmlindexindex.htmlindex.htmssl_certificate ******.pemssl_certificate_key *******.keyssl_session_timeout5mssl_ciphersECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4ssl_protocolsTLSv1TLSv1.1TLSv1.2ssl_prefer_server_ciphersonlocation/{proxy_pass https://localhost:3001}location/ws{proxy_passhttps://localhost:8181 proxy_read_timeout60sproxy_http_version1.1proxy_set_headerUpgrade$http_upgradeproxy_set_headerConnection"Upgrade"} }WebSocket协议的握手和HTTP是兼容的,它使用HTTP的Upgrade协议头将连接从HTTP连接升级到WebSocket连接。这个特性使得WebSocket应用程序可以很容易地应用到现有的基础设施。就可以使用https// 域名访问和使用wss:// 域名+/ws访问了

wss网上什么意思 配置域名 域名怎么配置才能用

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。