How to set nginx to allow access only to individual IPs

王林
Release: 2020-12-03 15:57:57
forward
3486 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:
source:csdn.net
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!