Hi

We have a Certificate Based Authentication for one of our websites.

We want that if users visit from Office IP's then they should not have to
go via Certificate Based Authentication. Rest for all, Authentication is
necessary.

What would be the ideal way of doing this ?

I believe $remote_addr can play role in this.


*My current sample Nginx config :*-

server
{
    listen          80;

    ssl_client_certificate /backup/ca.crt;
    ssl_verify_client   on;

    location /
    {
     root /var/www/html;
     index index.html;
 }
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to