Home > Article > Operation and Maintenance > 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!