gpt4 book ai didi

nginx - 如何通过配置 nginx.conf w a proxy_pass 使用 Nginx 作为博客的反向代理

转载 作者:行者123 更新时间:2023-12-04 19:31:06 25 4
gpt4 key购买 nike

我正在努力让我的网站 mysite.com/blog 显示我的 tumblr 博客,而没有 tumblr URL。

我正在使用 NGINX 并由 nginx.conf 更新,内容如下:

location /blog {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;

gzip on;
gzip_min_length 1100;
gzip_buffers 4 8k;
gzip_proxied any;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;

if (!-f $request_filename) {
rewrite ^/blog$ /;
rewrite ^/blog/(.*)$ /$1;
proxy_pass http://denise-puchol.tumblr.com/;
break;
}
}

这是失败的,没有错误消息。任何想法我在这里做错了什么?谢谢

最佳答案

This nginx gist可能有助于为您的 Tumblr 博客建立反向代理。 Definitely worthwhile to subfolder rather than subdomain your blog用于 SEO 目的。

关于nginx - 如何通过配置 nginx.conf w a proxy_pass 使用 Nginx 作为博客的反向代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13465566/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com