nginx实现反向代理例子 -凯发k8官方网
凯发k8官方网
收集整理的这篇文章主要介绍了
nginx实现反向代理例子
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
server{listen 80;server_name tjise.codingce.com.cn;location / {proxy_set_header x-real-ip $remote_addr;proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;proxy_set_header host $http_host;proxy_set_header x-nginx-proxy true;#你的项目端口号proxy_pass http://119.23.69.213:8091/;}#把http的域名请求转成httpsrewrite ^(.*)$ https://$host$1 permanent; location /logs/ {autoindex off;deny all;}error_page 411 = @my_error;
}
server{listen 443 ssl;server_name tjise.codingce.com.cn;ssl_certificate /usr/local/nginx/cert/1_tjise.codingce.com.cn_bundle.crt;ssl_certificate_key /usr/local/nginx/cert/2_tjise.codingce.com.cn.key;ssl_session_timeout 5m;ssl_protocols tlsv1 tlsv1.1 tlsv1.2; #请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。ssl_ciphers ecdhe-rsa-aes128-gcm-sha256:high:!anull:!md5:!rc4:!dhe; ssl_prefer_server_ciphers on;charset utf-8;location / {proxy_set_header x-real-ip $remote_addr;proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;proxy_set_header host $http_host;proxy_set_header x-nginx-proxy true;#你的项目端口号proxy_pass http://119.23.69.213:8091/;}}
总结
以上是凯发k8官方网为你收集整理的nginx实现反向代理例子的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇:
- 下一篇: