NGINX access.log 未更新
NGINX access.log not updating
我创建了一个简单的 HTML 网站,有 4 html 个页面(4 links)。
access.log 不会因多次访问 html 页面而更新。
例如用户点击 link #1 -> link #2 -> link #1
access.log只会显示:
GET /page#1.html
GET /page#2.html
我希望它显示所有请求,即:
GET /page#1.html
GET /page#2.html
GET /page#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/*;
}
正如@emix 已经指出的那样,浏览器是否根本没有向您的服务器发出请求。相反,该页面很可能将从您的浏览器缓存中提供。
对于浏览器为何这样做的(过于)简短的回答是,减少不必要的网络请求并节省资源。
为了更好地了解什么是(浏览器)缓存,我建议您阅读以下资源:
计算器 Q/A:
- What is caching?
外部站点:
我创建了一个简单的 HTML 网站,有 4 html 个页面(4 links)。 access.log 不会因多次访问 html 页面而更新。
例如用户点击 link #1 -> link #2 -> link #1
access.log只会显示:
GET /page#1.html
GET /page#2.html
我希望它显示所有请求,即:
GET /page#1.html
GET /page#2.html
GET /page#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/*;
}
正如@emix 已经指出的那样,浏览器是否根本没有向您的服务器发出请求。相反,该页面很可能将从您的浏览器缓存中提供。
对于浏览器为何这样做的(过于)简短的回答是,减少不必要的网络请求并节省资源。
为了更好地了解什么是(浏览器)缓存,我建议您阅读以下资源:
计算器 Q/A:
- What is caching?
外部站点: