Re: http://forum.nginx.org/read.php?29,246309,246309#msg-246309

2014-04-26 Thread Christian Felsing
Hello, is that patch available somewhere in Nginx Mercurial? Christian Am 25.04.2014 17:30, schrieb Maxim Dounin: > Latest work on this seems to be in this thread: > > http://mailman.nginx.org/pipermail/nginx-devel/2014-March/005067.html > http://mailman.nginx.org/pipermail/nginx-devel/2014-Apr

http://forum.nginx.org/read.php?29,246309,246309#msg-246309

2014-04-25 Thread Christian Felsing
Hello, are there plans to incorporate that patch http://forum.nginx.org/read.php?29,246309,246309#msg-246309 into Nginx? I would like to use Nginx as IMAP/POP3 with TLS client certificate authentication. At this time Nginx mail module does not support that. best regards Christian Felsing

Re: Fake Basic Auth

2013-08-28 Thread Christian Felsing
Thank you for your hint, which solved this problem with a little bit LUA code. If LUA code (security) tests are finsihed I will publish this code. cheers Christian Am 27.08.2013 00:08, schrieb Francis Daly: > The correct value is "Basic " followed by the base64-encoding of > user:pass, where "use

Re: Fake Basic Auth

2013-08-26 Thread Christian Felsing
Sorry, does not what I need: proxy_pass http://myapache:8000; rewrite_by_lua ' ngx.var.remote_user = "user" ngx.var.remote_password = "secret" '; This should fake a 401 login but I get 2013/08/26 20:11:11 [error] 19175#0: *2 lua entry thre

Fake Basic Auth

2013-08-24 Thread Christian Felsing
Hello, I am new to nginx and have following problem: Nginx should be used as a reverse proxy and configured for client certificate authentication. Backoffice application supports basic auth only. Apache 2.4 solution for that kind of problems is "Fake Basic Auth" so backoffice application gets a r