技术解析
我的 nginx 设置如下:
server {
listen 80 default_server;
listen 443 default;
ssl on;
ssl_certificate /root/certificate.crt;
ssl_certificate_key /root/private.key;
server_name _;
return 403;
}
server {
listen 443;
listen 80;
server_name example.com www.example.com;
ssl on;
ssl_certificate /root/certificate.crt;
ssl_certificate_key /root/private.key;
location ~ \.php$ {
proxy_pass http://localhost:800;
大带宽服务器 }
error_page 497 https://$host$uri?$args;
}
我这样写的目的是阻止用 IP 直接访问以及强制使用 https 访问网页,想的是利用反向代理,使得连接到 nginx 用 https,然后服务器内部是直接转到 httpd 的 800 端口。但是有一个问题在于浏览器的安全策略会认为 httpd 里的 http 静态资源不安全,从而拒绝访问,如下图: 我想问一下能像我设想的那样连到 nginx 是 https,然后内部的转发用 http 吗?该如何设置,谢谢