我正在尝试使用Nginx作为github页面上的页面的反向代理。基于此处的信息:https://pascal.io/github-pages-https/和其他人,我的配置如下所示:
server {
listen 80 default_server;
server_name leepope.com www.leepope.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
server_name leepope.com;
ssl on;
ssl_certificate <my cert>;
ssl_certificate_key <my key>;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_session_cache shared:SSL:10m;
ssl_prefer_server_ciphers on;
add_header Strict-Transport-Security max-age=15768000;
location / {
proxy_pass https://leepope.github.io;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_intercept_errors on;
expires off;
}
}
当我向服务器根发出请求时,我得到一个github页面,但它是404.
我已经启用了nginx调试,但我看不到github的请求是什么样的 - 它们的标题在日志中,但是没有关于发生什么的信息。
任何人都可以帮我解决这个问题吗?
感谢。