假定nginx.conf的目錄在/u01/install/nginx/conf,那我就在這個目錄下面建立blockips.conf
vim blockips.conf
然後裡面新增禁止的ip
例:deny 116...162;
deny 115.*.14.194;
新增好以後去配置nginx.conf檔案,在http層中加上include blockips.conf; 就可以了
最後我們來檢查nginx配置檔案是否正確,然後重啟
/u01/install/nginx/sbin/nginx -t
/u01/install/nginx/sbin/nginx -s reload
varnish下使用acl限制ip位址訪問
acl forbidden chinaip.data 192.168.1.0 24 10.0.0.0 24 第2步 在vcl recv中定義策略,放到最前面。if client.ip forbidden 第3步 可選 自定義錯誤頁面 根據不同的錯誤 執行不同的操作 將錯誤 為750的,重定向goog...
SSH限制某些使用者 ip登入
1,只允許某個ip登入,拒絕其他所有ip 在 etc hosts.allow 寫 sshd 1.2.3.4 在 etc hosts.deny 寫 sshd all 用 iptables 也行 iptables i input p tcp dport 22 j drop iptables i inpu...
nginx 限制 ip 訪問
環境 centos7.6 nginx 1.16.1 背景 nginx 伺服器已經配置好了公網 ip 和 網域名稱證書 公網 ip 對我來說是透明的,沒有管理許可權,所以只好在 nginx 伺服器上做 ip 限制 未修改之前,登入日誌的 remote addr 總是為 192.12.182.3,猜測這...