Secuse Drupal

 

 

 


Nginx Proxy www

 

proxy_www

server {
    ....
    location ~ ^/admin|^/user {
        # Proxy Setting
        include     /etc/nginx/proxy_params;
        proxy_pass  http://MyBackend;
        # ACL
        allow           127.0.0.1;
        allow           192.168.123.0/24;
        deny all;
    }
    location ~ ^/node/.*/revisions$ {
        include     /etc/nginx/proxy_params;
        proxy_pass  http://MyBackend;
        # ACL
        allow           127.0.0.1;
        allow           192.168.123.0/24;
        deny all;
    }
    ...
}