Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

如何设置nginx的https反向代理

[复制链接]
zhy_aid_cn 发表于 2008-7-10 12:44:35 | 显示全部楼层 |阅读模式
如何设置nginx的https反向代理

下面这个设置是不行的。。。
  1.         upstream ssl {
  2.                 server 192.168.2.5:443;
  3.                                 server 192.168.2.6:443;
  4.         }
  5.         server {
  6.                 listen 443;
  7.                 #ssl                  on;
  8.                 #ssl_session_timeout  5m;
  9.                 index index.html index.htm index.php;
  10.                 server_name ssl.c.cn;
  11.                
  12.                 access_log      /var/log/ssl.nginx.access.log;
  13.                                error_log       /var/log/ssl.nginx.error_log;
  14.                 location / {
  15.                 proxy_set_header  X-Real-IP  $remote_addr;

  16.                 # needed for HTTPS
  17.                         proxy_set_header X_FORWARDED_PROTO https;

  18.                         proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
  19.                         proxy_set_header Host $http_host;
  20.                         proxy_redirect false;
  21.                         proxy_max_temp_file_size 0;
  22.                         if (!-f $request_filename) {
  23.                                 proxy_pass http://ssl;  //这个地方不论设置为 https://还是http://都不行
  24.                                 break;
  25.                         }
  26.                        
  27.                         proxy_temp_path   /var/nginx/proxy_temp;
  28.                         client_body_temp_path      /var/nginx/client_body_temp;
  29.             charset  gbk;
  30.                 }

  31.         }
复制代码
libertine 发表于 2008-11-14 11:28:06 | 显示全部楼层
楼主这种方法我也测试了暂时没有办法实现,也就是 说upstream目前好象还不支持https

但是如果只是用代理的方式,而不使用upstream的话可以实现443--->443的代理
回复

使用道具 举报

enhand 发表于 2008-11-29 09:04:33 | 显示全部楼层
squid 吧,很好用的。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-18 13:56 , Processed in 0.036110 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表