Nginx ACL 제어, IP / 권한 관리

1910 단어 nginx
nginx 의 config 파일 에 설정
 location / {
            #deny all;
            root   D:/static/;
            index  index.html index.htm;
        }

deny 허용 금지
deny IP; deny subnet; allow IP; allow subnet; deny all; allow all;
예 를 들다
   location / {
            #deny all; #      ip    
            #allow all; #     ip    
            #allow 1.1.1.1; #   1.1.1.1 ip     
            #deny 1.1.1.1; #   1.1.1.1 ip
            root   D:/static/;
            index  index.html index.htm;
        }

좋은 웹페이지 즐겨찾기