ทั้งสองอย่างnginx -t
และnginx -V
จะพิมพ์พา ธ ไฟล์กำหนดค่า nginx เริ่มต้น
$ nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
$ nginx -V
nginx version: nginx/1.11.1
built by gcc 4.9.2 (Debian 4.9.2-10)
built with OpenSSL 1.0.1k 8 Jan 2015
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf ...
หากต้องการคุณสามารถรับไฟล์ config ได้โดย:
$ nginx -V 2>&1 | grep -o '\-\-conf-path=\(.*conf\)' | cut -d '=' -f2
/etc/nginx/nginx.conf
แม้ว่าคุณจะโหลดไฟล์ config อื่น ๆ มาบ้าง แต่ไฟล์เหล่านั้นก็ยังคงพิมพ์ค่าเริ่มต้นออกมา
ps aux
จะแสดงไฟล์กำหนดค่า nginx ที่โหลดในปัจจุบัน
$ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 11 0.0 0.2 31720 2212 ? Ss Jul23 0:00 nginx: master process nginx -c /app/nginx.conf
เพื่อที่คุณจะได้รับไฟล์ config โดยตัวอย่าง:
$ ps aux | grep "[c]onf" | awk '{print $(NF)}'
/app/nginx.conf