|
ubuntu我是用Nginx 搭建站点的,什么都搞好了,网站程序都上好,也能打开了
但发现了个问题..我有两个IP,分别建立了两个站,但访问日志是只有一个
access.log,我看不出搜索引擎倒底访问了哪个站,在网上看到了些文章,在域名
配置了添加了access_log /var/log/nginx/111.log;
下面的*号是代表我的域名
因为access_log是在/var/log/nginx/里面的,所以我把它也改在里面了
这样它会不会自动建立该网站的独立访问日志文件名 为 111.log的???
而位置在/var/log/nginx/111.log
如果这样设置不对,应该怎么设置呢??
请高手帮忙解答一下,小弟在此衷心感谢了
server {
listen 80;
server_name www.*** ***;
index index.html index.htm index.php;
access_log /var/log/nginx/111.log;
root /var/www/111/;
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME
$document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
# fastcgi_read_timeout 1800;
# fastcgi_send_timeout 1800;
# fastcgi_connect_timeout 1800;
}
}
[ 本帖最后由 23406552 于 2011-11-14 18:24 编辑 ] |
|