V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  guanyujia5444  ›  全部回复第 2 页 / 共 2 页
回复总数  29
1  2  
2020-10-12 17:13:54 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
最新的配置如下,依然是 http 的 81 可以访问,https 的 8888 端口无法访问,两个转发的后端服务都是一样的。
转发的协议是 http 的。

#user nobody;
worker_processes 1;

error_log logs/error.log;
error_log logs/error.log notice;
error_log logs/error.log info;

#pid logs/nginx.pid;


events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;
tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

gzip on;

upstream ncc{
ip_hash;
server 192.168.100.241:9081 weight=10;
server 192.168.100.241:9082 weight=10;
keepalive 300;
}



server {
listen 81;
server_name localhost;
index index.jsp;
location / {
allow all;
index index.jsp index.html;
proxy_pass http://ncc;
proxy_set_header Host $http_host;
proxy_set_header Cookie $http_cookie;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 100m;
client_body_buffer_size 256k;
proxy_buffering off;
proxy_connect_timeout 1;
proxy_send_timeout 30;
proxy_read_timeout 60;
proxy_buffer_size 256k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
proxy_temp_file_write_size 256k;
proxy_max_temp_file_size 128m;
}
}
server {
listen 8888 ssl;
#error_page 497 301 =307 https://$host:443$request_uri;
server_name localhost;
index index.jsp;
ssl_certificate cert/2.pem;
ssl_certificate_key cert/2.key;
ssl_session_cache shared:SSL:1m;
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 / {
allow all;
index index.jsp index.html;
proxy_pass http://ncc;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Cookie $http_cookie;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade-Insecure-Requests 1;
client_max_body_size 100m;
client_body_buffer_size 256k;
proxy_buffering off;
proxy_connect_timeout 1;
proxy_send_timeout 30;
proxy_read_timeout 60;
proxy_buffer_size 256k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
proxy_temp_file_write_size 256k;
proxy_max_temp_file_size 128m;
}
}
}
2020-10-12 17:11:11 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@zunceng 已经注释掉这三条,还是不行的
2020-10-12 17:09:05 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@zunceng 这块不太懂,是删掉如下几条吗?

proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade-Insecure-Requests 1;
2020-10-12 16:44:34 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@Citrus 因为之前解决问题,有人说需要注释掉这条。。。我先补上

下面这两条意义一致吗?

# proxy_set_header Host $host:$server_port;
# proxy_set_header Host $proxy_host;
2020-10-12 16:41:58 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@simenet 不是这个问题,这个是反向代理,不是作为本地 web 服务器
2020-10-12 16:40:44 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@zunceng 配置是有些不一样,我把 timeout 和 buffer 补上试试
2020-10-12 16:39:41 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@whorusq ssl on 的方式,已经淘汰了,现在都是这么用
listen 443 ssl;
2020-10-12 16:38:13 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@engineercj 不是这个问题,如果是这个问题,影响是全局的,不会 80 端口正常,443 不正常
2020-10-12 16:36:47 +08:00
回复了 guanyujia5444 创建的主题 NGINX 关于 nginx 反向代理, HTTP 正常, HTTPS 访问报 403 错误
@Lockeysama 访问日志无任何报错,也就是说 nginx 正常转发了,但使用证书方式转发时候,后端应用拒绝了,不知道是不是应该在 nginx 配置文件上添加参数
1  2  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2749 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 11ms · UTC 10:48 · PVG 18:48 · LAX 02:48 · JFK 05:48
Developed with CodeLauncher
♥ Do have faith in what you're doing.