Detailed explanation of how to find the location of the nginx configuration file

Detailed explanation of how to find the location of the nginx configuration file

How can you find the location of the configuration file quickly and easily for an unfamiliar server or if you have forgotten where it was installed so long ago? To find out the location of the configuration file, you need to first find the path to the nginx executable file. There are several ways to do this:

1. If the program is running ps -ef | grep nginx # ps -ef | grep nginx root 29514...

How can you find the location of the configuration file quickly and easily for an unfamiliar server or if you have forgotten where it was installed so long ago?
To find out the location of the configuration file, you need to first find the path to the nginx executable file.

Here are a few ways:

1. If the program is running

ps -ef | grep nginx
# ps -ef | grep nginx 
root 29514 1 0 Mar01 ? 00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 29515 29514 0 Mar01 ? 00:00:00 nginx: worker process
root 30276 28948 0 09:36 pts/1 00:00:00 grep --color=auto nginx

Usually /usr/sbin/nginx

2. The program is not running

View the software installation path

whereis nginx

Query the path where the running file is located

which nginx

Of course there are other ways to query

If the rpm package is installed, you can use rpm -qa | grep "name of software or package" to query;
If installed by yum method, you can use yum list installed to find it;

Get the configuration file location

Through the above methods, we can find the path of the nginx executable file, and then find the location of the configuration file through Nginx's own functions.

# /usr/sbin/nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

Do you have a better way?

Summarize

The above is a detailed explanation of the method I introduced to you to find the location of the nginx configuration file. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • A brief analysis of the writing and use of variables in the Nginx configuration file
  • Chinese comments on Nginx's nginx.conf configuration file
  • Detailed explanation of nginx configuration file in Chinese
  • Introduction to Nginx configuration and configuration files under Windows
  • Nginx server configuration file complete analysis
  • Detailed explanation of Nginx configuration file
  • Detailed explanation of Nginx configuration file
  • Nginx configuration file detailed explanation and optimization suggestions guide

<<:  MySQL 5.7.20\5.7.21 free installation version installation and configuration tutorial

>>:  How to set default value for datetime type in MySQL

Recommend

Vue.js implements the code of clicking the icon to zoom in and leaving

The previous article introduced how Vue can reali...

How to install MySQL 5.7.17 and set the encoding to utf8 in Windows

download MySQL official download, select Windows ...

6 interesting tips for setting CSS background images

Background-image is probably one of those CSS pro...

Solution to the problem of installing MySQL compressed version zip

There was a problem when installing the compresse...

Interpreting MySQL client and server protocols

Table of contents MySQL Client/Server Protocol If...

Detailed explanation of how MySQL solves phantom reads

1. What is phantom reading? In a transaction, aft...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...

Solution to 1290 error when importing file data in mysql

Error scenario Use the mysql command in cmd to ad...

Vue implements multiple selections in the bottom pop-up window

This article example shares the specific code of ...

Detailed process of installing Presto and connecting Hive in Docker

1. Introduction Presto is an open source distribu...

Detailed example of reading speed of js objects

1. Accessing literals and local variables is the ...

JS realizes the scrolling effect of announcement online

This article shares the specific code of JS to ac...