nginx配置https转发的一个例子
Posted IWay
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx配置https转发的一个例子相关的知识,希望对你有一定的参考价值。
server { listen 443;
#https默认端口不是80,而是443 server_name www.test.com; ssl on; ssl_certificate cert/2142977640231.pem; ssl_certificate_key cert/2142977640231.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 / { proxy_pass http://192.168.97.5:9888; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection keep-alive; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
以上是关于nginx配置https转发的一个例子的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 16.04 -- 同时配置Nginx(转发)和frp(内网映射)和HTTPS(ca加密) - 端口转发
openwrt内网端口转发,内部使用nginx反代,外部使用https安全访问的方案