全球主机交流论坛
标题:
为啥还是生成 access.log 已经都关了啊
[打印本页]
作者:
eudx
时间:
2010-3-29 09:47
标题:
为啥还是生成 access.log 已经都关了啊
user www www;
worker_processes 2;
error_log /home/www/logs/nginx_error.log crit;
pid /usr/local/nginx/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 2048;
}
http
{
include mime.types;
default_type application/octet-stream;
#charset gb2312;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
#limit_zone crawler $binary_remote_addr 10m;
server {
listen 80 default;
return 500;
}
server
{
listen 80;
server_name XXX.com www.XXX.com;
index index.html index.htm index.php;
root /home/www;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location / {
rewrite ^/bbs/archiver/((fid|tid)-[\w\-]+\.html)$ /bbs/archiver/index.php?$1 last;
rewrite ^/bbs/forum-([0-9]+)-([0-9]+)\.html$ /bbs/forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/bbs/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /bbs/viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
rewrite ^/bbs/space-(username|uid)-(.+)\.html$ /bbs/space.php?$1=$2 last;
rewrite ^/bbs/tag-(.+)\.html$ /bbs/tag.php?name=$1 last;
break;
}
log_format wwwlogs '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
access_log off;
}
server
{
listen 80;
server_name bbs.XXX.com;
index index.html index.htm index.php;
root /home/www/bbs;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location / {
rewrite ^/archiver/((fid|tid)-[\w\-]+\.html)$ /archiver/index.php?$1 last;
rewrite ^/forum-([0-9]+)-([0-9]+)\.html$ /forumdisplay.php?fid=$1&page=$2 last;
rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
rewrite ^/space-(username|uid)-(.+)\.html$ /space.php?$1=$2 last;
rewrite ^/tag-(.+)\.html$ /tag.php?name=$1 last;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log off;
}
}
复制代码
作者:
cpuer
时间:
2010-3-29 10:00
标题:
回复 1# 的帖子
这样关了不起效果,除非把生成路径指向黑洞。
作者:
iamfly
时间:
2010-3-29 10:01
标题:
回复 1# 的帖子
直接把access_log 相关的删除掉就可以了,以前我就是这样写的
作者:
cpuer
时间:
2010-3-29 10:04
标题:
回复 3# 的帖子
楼上更强大
作者:
iamfly
时间:
2010-3-29 10:05
标题:
回复 4# 的帖子
哈哈哈哈,嘻嘻嘻
作者:
eudx
时间:
2010-3-29 10:07
谢谢。 OFF 居然没用
把那行去掉可以啊
指向黑洞是指向啥地方
作者:
iamfly
时间:
2010-3-29 10:10
标题:
回复 6# 的帖子
C大的意思应该是指向一个不存在的目录地址吧
作者:
cpuer
时间:
2010-3-29 10:10
标题:
回复 6# 的帖子
就是指向不存在的地方的意思
比如:
access_log /dev/null;
error_log /dev/null;
作者:
iamfly
时间:
2010-3-29 10:13
标题:
回复 8# 的帖子
C大够狠,哈哈哈
作者:
eudx
时间:
2010-3-29 10:14
指向黑洞中 哈哈 原来这样的格式
怎么这么多日志啊。。MYSQL 的日志更多
这2行都让我注释掉了。正在努力寻找其他日志文件 除了错误日志外的 我都要清理掉 好像PHP 还有个日志文件
#log-bin=mysql-bin
#binlog_format=mixed
[
本帖最后由 eudx 于 2010-3-29 10:18 编辑
]
欢迎光临 全球主机交流论坛 (https://loc.mjj8.eu.org/)
Powered by Discuz! X3.4