nginx のフォルダを移動可能にするにはどうすればいいですか?

nginx のフォルダを移動可能にするにはどうすればいいですか?

現在、nginx をコンパイルすると (ディレクトリ /home/parth/nginx)、nginx バイナリの configure スクリプトに指定されたプレフィックスが埋め込まれます。そのフォルダーを移動すると (たとえば /tmp に)、次のエラー メッセージが表示されて中断します。ログ ファイル ディレクトリを構成する方法はありますか?

./nginx -p /tmp/ -c /tmp/conf/nginx.conf

nginx: [アラート] エラー ログ ファイルを開けませんでした: 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;
         }

... ファイルの残りの部分では、設定と閉じ括弧がコメントアウトされています。ルート 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_logconfig ディレクティブ。

関連情報