小程序模板网

nginx简单配置同时支持微信小程序https/wss协议

发布时间:2018-05-08 14:19 所属栏目:小程序开发教程

微信小程序需要使用https与wss能才进行连接,虽然开发模式下可以使用http与ws,但发布的时候还是需要安全协议,网上的各种配置是超多超复杂的,这里已经对nginx指定版本进行最简单的配置,可用。 

 

使用教程

nginx版本

 

				
  1. $ nginx -v
  2. nginx version: nginx/1.12.2

系统Centos7

 

				
  1. $ uname -r
  2. 4.14.11-1.el7.elrepo.x86_64

cat /etc/nginx/conf.d/test.conf

 

				
  1. server {
  2. listen 80;
  3. server_name test.dounine.com;
  4. return 301 https://$host$request_uri;
  5. }
  6.  
  7. server {
  8. listen 443;
  9. server_name test.dounine.com;
  10. ssl on;
  11. ssl_certificate /etc/nginx/ssls/test.xxxx.pem;
  12. ssl_certificate_key /etc/nginx/ssls/test.xxxx.key;
  13.  
  14. location / {
  15. client_max_body_size 100m;
  16. proxy_pass http://localhost:7777;
  17. proxy_set_header Host $host;
  18. proxy_set_header X-Real-IP $remote_addr;
  19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  20. proxy_set_header Upgrade $http_upgrade;
  21. proxy_set_header Connection "Upgrade";
  22. }
  23.  
  24. }

微信小程序代码

 

				
  1. wx.connectSocket({
  2. url: 'wss://test.dounine.com/ws'
  3. });
  4. wx.onSocketOpen(function(res) {
  5. console.info('websocket连接成功');
  6. });
  7. wx.onSocketClose(function(res) {
  8. console.log('WebSocket 已关闭!')
  9. });
  10. wx.onSocketError(function(res){
  11. console.log('WebSocket连接打开失败,请检查!')
  12. });
  13. wx.onSocketMessage(function(res) {
  14. console.log('收到服务器内容:' + res.data)
  15. })


易优小程序(企业版)+灵活api+前后代码开源 码云仓库:starfork
本文地址:https://www.eyoucms.com/wxmini/doc/course/24339.html 复制链接 如需定制请联系易优客服咨询:800182392 点击咨询
QQ在线咨询