目前,当我编译 nginx(在目录 /home/parth/nginx 中)时,它会将提供给 configure 脚本的前缀嵌入到 nginx 二进制文件中。现在,当我移动该文件夹(比如说移动到 /tmp)时,它会中断并显示以下错误消息。有没有办法配置日志文件目录?
./nginx -p /tmp/ -c /tmp/conf/nginx.conf
nginx:[alert] 无法打开错误日志文件:open()“/home/parth/nginx/var/logs/error.log”失败(2:没有此文件或目录)2012/08/27 02:22:26 [emerg] 23782#0:/tmp/conf/nginx.conf:25 中未知的日志格式“main”
== nginx.conf 文件 ==
#user nobody;
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
...文件的其余部分已经注释掉配置和右括号。root html;
答案1
[emerg] 23782#0: /tmp/conf/nginx.conf:25 中未知的日志格式“main”
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
取消注释该log_format
行并重试。
答案2
使用error_log
配置指令。