Home  >  Article  >  Operation and Maintenance  >  How to set nginx to allow access only to individual IPs

How to set nginx to allow access only to individual IPs

王林
王林forward
2020-12-03 15:57:573529browse

How to set nginx to allow access only to individual IPs

The specific steps are as follows:

(Recommended tutorial: nginx tutorial)

1. Open the nginx configuration file

sudo vi /etc/nginx/site-available/default

2. Edit the default configuration file (add the following two lines of code)

location / {
    allow 132.23.22.185;
    deny all;
}

3. Restart the nginx server

sudo service nginx restart

For more related knowledge points, please visit php Chinese website .

The above is the detailed content of How to set nginx to allow access only to individual IPs. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete