Nginx 접근 화이트 리스트 설정

server {
        listen       80;
        server_name  192.168.1.1;
        index index.html index.htm index.php;
        root /data/www/app/webroot;
        charset utf-8;
        allow 192.168.1.2;
        allow 192.168.1.3;
        deny all;

        location ~ .*\.php$ {
                include fcgi.conf;
                fastcgi_pass  127.0.0.1:10080;
                fastcgi_index index.php;
                expires off;
                access_log on;
                access_log  /data/logs/dpcq_php.log
                access buffer=32k;
        }
}

 
    주: allow XXX 에서 접근 할 수 있 는 ip;deny XXX 가 접근 을 거부 한 ip.

좋은 웹페이지 즐겨찾기