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

How to set nginx to allow access only to individual IPs

王林
Release: 2020-12-03 15:57:57
forward
3619 people have browsed it

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
Copy after login

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

location / {
    allow 132.23.22.185;
    deny all;
}
Copy after login

3. Restart the nginx server

sudo service nginx restart
Copy after login

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!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Error restarting nginx
From 1970-01-01 08:00:00
0
0
0
server - Nginx configuration webapp problem
From 1970-01-01 08:00:00
0
0
0
Nginx default.conf problem
From 1970-01-01 08:00:00
0
0
0
centos7 - NGINX exception occurs
From 1970-01-01 08:00:00
0
0
0
nginx load balancing
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template