gpt4 book ai didi

nginx - 带有 Nginx conf 的未知指令 "proxy_cache_revalidate on"

转载 作者:行者123 更新时间:2023-12-05 07:29:23 35 4
gpt4 key购买 nike

我正在尝试使用 nginx.conf 文件实现 nginx-cache。我引用了 here 中的代码

关于这一点,我在上游使用 proxy_cache_

如果我使用 proxy_cache_ 指令,下面是我面临的错误。 (我已经评论了其他 proxy_cache 指令并且只使用 proxy_cache_revalidate 所以我得到以下错误)

我将 Nginx 作为 Docker 容器运行。 (不确定,这是否是我遇到这些错误的原因)

2018/10/16 04:23:39 [emerg] 1#1:/etc/nginx/nginx.conf:127 中的未知指令“proxy_cache_revalidate on”
nginx:[emerg]/etc/nginx/nginx.conf:127 中的未知指令“proxy_cache_revalidate on”

下面是我的配置文件。

thread_pool default threads=32 max_queue=65536;

events { worker_connections 102400; }

http {
sendfile on;
sendfile_max_chunk 2048k;
access_log off;
#Implementing NGINX Cache
proxy_cache_path /usr/nginx-cache levels=1:2 keys_zone=nginx_cache:10m max_size=10g inactive=60m use_temp_path=off;

upstream licenseportal {
server xx.xx.xx.xx:9006;
}

upstream publisherportal {
server xx.xx.xx.xx:9001;
}

upstream supportportal {
server xx.xx.xx.xx:9010;
}

server {
listen 8765;

location /licenseportal/ {
proxy_pass http://licenseportal/;
proxy_redirect off;
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_set_header X-Forwarded-Host $server_name;
#Implementing NGINX Cache
proxy_cache nginx_cache;
proxy_cache_revalidate on;
#proxy_cache_min_uses 3;
#proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
#proxy_cache_background_update on;
#proxy_cache_lock on;
#proxy_cache_methods GET;
}


location /publisherportal/ {
proxy_pass http://publisherportal/;
proxy_redirect off;
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_set_header X-Forwarded-Host $server_name;
# #timeout setting added
fastcgi_read_timeout 7200s;
send_timeout 7200s;
proxy_connect_timeout 7200s;
proxy_send_timeout 7200s;
proxy_read_timeout 7200s;
#new property added
proxy_request_buffering off;
proxy_buffering off;
#Implementing NGINX Cache
proxy_cache nginx_cache;
#proxy_cache_revalidate on;
#proxy_cache_min_uses 3;
#proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
#proxy_cache_background_update on;
#proxy_cache_lock on;
#proxy_cache_methods GET;
}

location /supportportal/ {
proxy_pass http://supportportal/;
proxy_redirect off;
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_set_header X-Forwarded-Host $server_name;
#Implementing NGINX Cache
proxy_cache nginx_cache;
#proxy_cache_revalidate on;
#proxy_cache_min_uses 3;
#proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
#proxy_cache_background_update on;
#proxy_cache_lock on;
#proxy_cache_methods GET;
}
}
}

请让我知道我需要在我的 conf 文件中做哪些更改。

最佳答案

听起来我在这里做了一些复制和粘贴工作。在行尾 (EOL) 捕获一些不可见的额外字符的情况并不少见。所以我尝试了这个:

通过此工具运行您的文本:http://www.textfixer.com/tools/remove-line-breaks.php

然后修复任何可能已被删除并会受到评论影响的中断。

这对我有用。

关于nginx - 带有 Nginx conf 的未知指令 "proxy_cache_revalidate on",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52828432/

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