server { listen 0.0.0.0:80; server_name location ~ / { satisfy any; allow 192.168.1.0/24; deny all; auth_basic "Account Authentication"; auth_basic_user_file passwd; root /var/www/html; index index.html; }
|
||
kevin.Zhu 发布于:2022-10-26 16:58 分类:文摘 有 17 人浏览,获得评论 0 条
https://blog.csdn.net/weixin_33714884/article/details/91621051
server { listen 0.0.0.0:80; server_name location ~ / { satisfy any; allow 192.168.1.0/24; deny all; auth_basic "Account Authentication"; auth_basic_user_file passwd; root /var/www/html; index index.html; }
|
||