making telnet secure using Nginx redirect options

2018-08-17 Thread Sudarshan Soma
Hi All, We have a traditional custom server which is based on telnet at port 9932. Can we make it secure by just using Nginx.conf setting. something like: location /mytelnet { grpc_pass telnet localhost 9932; } Assume telnet client is my own application, it can iniitate https

Re: How to access query parameter names with '-' in it

2014-11-12 Thread sudarshan
The solution is to access it using lua as ngx.var[ "arg_param-name" ]. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,254782,254786#msg-254786 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

How to access query parameter names with '-' in it

2014-11-12 Thread sudarshan
If query parameters in the request looks like this /something.cgi?param_name=1¶m-name=2 I can access 'param_name' as $arg_param_name. How do I access 'param-name' though? $arg_param-name will not work since as far as nginx is concerned the variable name ends at $arg_param. Is there a workaround f