要指定nginx配置文件的路徑,可以在啟動nginx時使用-c
參數來指定路徑。具體的命令如下:
nginx -c /path/to/nginx.conf
其中,/path/to/nginx.conf
是nginx配置文件的路徑。請將其替換為實際的配置文件路徑。
如果使用的是systemd來管理nginx服務,可以編輯/lib/systemd/system/nginx.service
文件,在ExecStart
字段中添加-c
參數和配置文件路徑。示例如下:
ExecStart=/usr/sbin/nginx -c /path/to/nginx.conf
保存文件后,重啟nginx服務使更改生效。