geqintan commited on
Commit
e05bcd8
·
1 Parent(s): 14c6a65
Files changed (1) hide show
  1. nginx.conf +1 -0
nginx.conf CHANGED
@@ -32,6 +32,7 @@ http {
32
  -- 处理特殊字符转义(如路径中的%2F)
33
  ngx.var.target_path = ngx.re.gsub(ngx.var.target_path, "\\%2F", "/", "ijo")
34
  }
 
35
  # 测试到此有没有往下执行
36
  echo "123123";
37
 
 
32
  -- 处理特殊字符转义(如路径中的%2F)
33
  ngx.var.target_path = ngx.re.gsub(ngx.var.target_path, "\\%2F", "/", "ijo")
34
  }
35
+ proxy_pass "$target_proto://$target_host$target_path";
36
  # 测试到此有没有往下执行
37
  echo "123123";
38