Google Forms 使用 nginx 反向代理问题
现在配置如下:
server {
listen 80;
server_name docs.domain.net ;
location / {
proxy_pass
https://docs.google.com/
;
proxy_set_header Accept-Encoding "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_redirect
https://docs.google.com/
http://docs.domain.net/
;
}
}
首次是可以访问了, 但无法使用. 问题如下:
- 内置的 fonts.googleapis.com 墙内无法访问
- 进行操作后又跳回 https://docs.google.com/
戴眼镜的张飞
10 years ago