Hello all, I am having so much fun with lua and resty together. I am playing with a work around to the "IOS wss:// ssl_verify_client"
problem described here https://trac.nginx.org/nginx/ticket/499 "WebSocket will not connect from iOS Safari if ssl_verify_client is set to "optional"
I have a few questions for ya all:
Is there a way in lua to set the variable ssl_verify_client to on/off per new connection??? if so, can you point me in a good direction.
location /.* {
set $user_request .*;
proxy_pass http://abc.com/$user_request;
}
can I create a catch all wild card for a single location, put the request into a variable then pass the information to a proxy_pass??
Thanks for the help all,
-agolgi