Ubuntu

Nginx 忽略配置文件選項

  • March 30, 2017

我正在嘗試使用特定配置文件作為 Ubuntu 14.04 上的使用者程序啟動 nginx。但是我一開始就停止了:

$ nginx -c nginx.conf 
nginx: [alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)
2017/03/30 01:03:46 [emerg] 21805#21805: open() "/usr/share/nginx/nginx.conf" failed (2: No such file or directory)

它似乎在繼續嘗試打開預設配置和其他文件。我看到 nginx 是使用這些選項建構的:

$ nginx -V
nginx version: nginx/1.10.1
built with OpenSSL 1.0.1f 6 Jan 2014
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-auth-pam --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-dav-ext-module --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-echo --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/nginx-upstream-fair --add-module=/build/nginx-abUnII/nginx-1.10.1/debian/modules/ngx_http_substitutions_filter_module

知道如何讓 nginx 作為具有指定配置文件的使用者程序啟動嗎?

顯然,我可以通過在系統級別包含所需的配置並以 root 身份正常啟動 nginx,然後切換 www-data 或其他使用者來解決這個問題,但在這種情況下,我希望能夠以使用者身份執行 nginx處理與任何其他使用者應用程序沒有什麼不同以適應我的部署架構。

-c 僅允許您設置相對於“前綴路徑”的配置文件名/路徑,您可以使用 -p 進行設置。

您可以嘗試將完整路徑傳遞給-c選項。例如,如果 nginx.conf 文件在您的目前目錄中

nginx -c ./nginx.conf

引用自:https://serverfault.com/questions/841454