NGINX access.log未更新

y4ekin9u  于 2022-12-03  发布在  Nginx
关注(0)|答案(2)|浏览(140)

我创建了一个简单的HTML网站,其中包含4个html页面(4个链接)。access.log不会因多次访问html页面而更新。
例如,用户点击链接#1 -〉链接#2 -〉链接#1
access.log只会显示:

获取/页面#1.html
获取/页面#2.html

我希望它显示所有请求,即:

获取/页面#1.html
获取/页面#2.html
获取/页面#1.html

我已经考虑过修改我的.config文件,但是没有成功。任何帮助都将不胜感激。谢谢。
下面是我的nginx.config文件:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 2048;
    multi_accept on;
}

http {

##
# Basic Settings
##

server_name_in_redirect off;
server_tokens off;
port_in_redirect off;

sendfile on;
tcp_nopush on;
tcp_nodelay off;
send_timeout 30;
keepalive_timeout 60;
keepalive_requests 200;
reset_timedout_connection on;
types_hash_max_size 2048;

server_names_hash_bucket_size 64;
# server_name_in_redirect off;

include /etc/nginx/mime.types;
#default_type application/octet-stream;
default_type text/html;
charset UTF-8;

##
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log warn;

##
# Gzip Settings
##

gzip on;
gzip_min_length 256;
gzip_disable "msie6";

# gzip_vary on;
gzip_proxied any;
gzip_comp_level 5;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
wrrgggsh

wrrgggsh1#

正如@emix已经指出的,浏览器不是简单地向服务器发出请求,而是很可能从浏览器的缓存中提供页面。
对于浏览器为什么要这样做的(太)简短的回答是,减少不必要的网络请求和保存资源。
为了更好地理解什么是(浏览器)缓存,我建议您阅读以下资源:

wsxa1bj1

wsxa1bj12#

也有可能是访问问题。
在我的案例中,文件的所有者是:

-rw-rw-r--   1 nginx root        0 Dec  2 10:53 error.log
-rw-rw-r--   1 nginx root        0 Dec  2 10:53 access.log

但是nginx目录的所有者是root:root

drwx------.  2 root   root               20480 Dec  2 17:02 nginx

我必须做的是删除所有日志文件并重新启动nginx(Fedora Linux):

rm -rf nginx/*
systemctl reload nginx.service

在此之后,新创建的文件获得了正确的权限并被更新。

-rw-rw-r--   1 root root        0 Dec  2 17:02 error.log
-rw-rw-r--   1 root root        0 Dec  2 17:02 access.log

相关问题