How to view nginx configuration file path and resource file path

How to view nginx configuration file path and resource file path

View the nginx configuration file path

Through nginx -t

The original function of the nginx -t command is to verify whether there are any abnormalities in the format and configuration of the nginx configuration file. This command will output the path and verification results of the nginx configuration file. In the output results, you can find the address of the current nginx loaded configuration file, as shown below:

nginx -t

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

From this we can see that the nginx configuration file is in the folder /etc/nginx/nginx.conf

Use ps -ef | grep nginx

If the loading path of the nginx configuration file is explicitly configured during the nginx startup process, you can easily see the current configuration file loading path in this way

Use the locate command to search

If the locate command is installed on the server, you can use the locate nginx.conf command to search, but if there are multiple nginx.conf files, it is difficult to determine which nginx configuration file is loaded.

Search through the nginx -V command

You can see all the configuration information during installation through the nginx -V command. By looking for the --conf-path configuration information inside, you can find the path of the corresponding configuration file, as shown below:

nginx -V

nginx version: nginx/1.12.2
built by gcc 8.2.1 20180905 (Red Hat 8.2.1-3) (GCC) 
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --add-module=/usr/local/src/headers-more-nginx-module-0.33 --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

View nginx resource file path

Through the nginx -V command

Use the nginx -V command, and then find the --prefix= configuration returned in the command. The path corresponding to the configuration is the path of the nginx resource file.

This is the end of this article about how to view the nginx configuration file path and resource file path. For more relevant nginx configuration file path content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the mechanism and implementation of accept lock in Nginx
  • Solve the problem of Nginx returning 404 after configuring proxy_pass
  • Solution to Nginx SSL certificate configuration error
  • Nginx 502 Bad Gateway Error Causes and Solutions
  • Proxy_pass method in multiple if in nginx location
  • Nginx configuration sample code for downloading files
  • Implementation of nginx multiple locations forwarding any request or accessing static resource files
  • Detailed explanation of the implementation of nginx process lock

<<:  JavaScript to achieve dynamic color change of table

>>:  Vue uses the Element el-upload component to step on the pit

Recommend

Flex layout achieves fixed number of rows per line + adaptive layout

This article introduces the flex layout to achiev...

Let’s talk in detail about how browsers view closures

Table of contents Preface Introduction to Closure...

javascript realizes 10-second countdown for payment

This article shares the specific code of javascri...

JavaScript super detailed implementation of web page carousel

Table of contents Creating HTML Pages Implement t...

JavaScript+html implements random QR code verification on front-end pages

Share the cool front-end page random QR code veri...

Nodejs implements intranet penetration service

Table of contents 1. Proxy in LAN 2. Intranet pen...

jQuery realizes the shuttle box function

This article example shares the specific code of ...

Analyze how to automatically generate Vue component documentation

Table of contents 1. Current situation 2. Communi...

Conflict resolution when marquee and flash coexist in a page

The main symptom of the conflict is that the FLASH...

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the...

Solve the cross-domain problem of Vue+SpringBoot+Shiro

Table of contents 1. Configure Vue front end 1. D...

Detailed explanation of the basic usage of the img image tag in HTML/XHTML

The image tag is used to display an image in a we...

In-depth understanding of MySQL master-slave replication thread state transition

Preface The basic principle of MySQL master-slave...