我将Nginx设置为前端代理,在centos vps上使用apache。最近,当我去更改特定网站或nginx.conf文件本身的配置文件时,我没有看到任何更改。我已经重新启动了nginx和apache,以及清除了nginx临时目录。
例如,当我将gzip_http_version从1.1更改为1.0时,我首先注意到了。我检查了我的标题,但没有变化。我还可以在conf文件中添加随机字符,一切都可以正常工作。
以下是网站配置文件的示例。
server {
error_log /var/log/nginx/vhost-error_log warn;
listen 204.197.248.70:80;
server_name www.website.com;
access_log /usr/local/apache/domlogs/www.website.com-bytes_log bytes_log;
access_log /usr/local/apache/domlogs/www.website.com combined;
root /home/www.website.com/public_html;
location / {
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso)$ {
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
try_files $uri @backend;
}
error_page 405 = @backend;
add_header X-Cache "HIT from Backend";
proxy_pass http://1.1.1.1.:8081;
include proxy.inc;
}
location @backend {
internal;
proxy_pass http://1.1.1.1:8081;
include proxy.inc;
}
location ~ .*\.(php|jsp|cgi|pl|py)?$ {
proxy_pass http://1.1.1.1:8081;
include proxy.inc;
}
location ~ /\.ht {
deny all;
}
}
这是我的nginx.conf文件
user user;
# no need for more workers in the proxy mode
worker_processes 2;
error_log /var/log/nginx/error.log info;
worker_rlimit_nofile 20480;
events {
worker_connections 5120; # increase for busier servers
use epoll; # you should use epoll here for Linux kernels 2.6.x
}
http {
server_name_in_redirect off;
server_names_hash_max_size 10240;
server_names_hash_bucket_size 1024;
include mime.types;
default_type application/octet-stream;
server_tokens off;
# remove/commentout disable_symlinks if_not_owner;if you get Permission denied error
# disable_symlinks if_not_owner;
sendfile off;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 5;
ignore_invalid_headers on;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
reset_timedout_connection on;
connection_pool_size 256;
client_header_buffer_size 256k;
large_client_header_buffers 4 256k;
client_max_body_size 200M;
client_body_buffer_size 128k;
request_pool_size 32k;
output_buffers 4 32k;
postpone_output 1460;
proxy_temp_path /tmp/nginx_proxy/;
client_body_in_file_only on;
log_format bytes_log "$msec $bytes_sent .";
include "/etc/nginx/vhosts/*";
}
如果我还需要添加任何其他信息,请告知我们。
答案 0 :(得分:1)
服务器端重新启动nginx应该已经激活了新配置(我假设你的配置有效,试试nginx -t
检查一下,如果你用一个破坏的配置重新加载nginx它会继续运行与旧的一起)
所以我的猜测是问题是由您添加的缓存标头引起的:
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
你基本上告诉你下游的一切,在接下来的30天内什么都不会改变......
因此客户端正在使用他们的浏览器缓存(或其间任何代理的缓存),而不是重新请求(已更改)页面
您可以通过请求包含wget
或curl
的已更改页面进行检查,以避免任何代理或浏览器缓存干扰。