Re: nginx directives geo and map behind proxy

2019-03-18 Thread gogan
Francis Daly Wrote: --- > geo $limited { > default 0; > x.x.x.x 1; > } > > map $limited $botlimit { > 1 ''; > 0 $remote_addr; > } > That config says that requests with $remote_addr set to x.x.x.x should > not be limited, and every

Re: 3rd party module contribution

2019-03-18 Thread Sergey A. Osokin
Hi Asier, the FreeBSD ports tree contains two ports of nginx - stable and mainline versions. Both ports support 60+ third-party modules: clojure, passenger, ldap_auth and so on. Usualy third-party module contributors for nginx use github.com and other web-based hosting services for version contr

Re: ngx_stream_log_module log_format not working

2019-03-18 Thread CCS
This worked for me without and issue. Try and copy. log_format proxy '$remote_addr [$time_local]' 'with SSL Server name "$ssl_server_name" ' 'proxying to "$selected_upstream" ' '$protocol $status $bytes_sent $bytes_receiv

Re: Nginx can’t proxy client certificate authentication

2019-03-18 Thread WoMa
Hi Francis, >The only extra piece you could add, if the haproxy side wanted to know >which specific client certificate was used, would be to use some of the >variables listed around http://nginx.org/r/$ssl_client_i_dn in headers >sent to the upstream. Thanks, I will probably need to pass this inf

3rd party module contribution

2019-03-18 Thread Asier Gutierrez
Hi there, At Megalabs we have created a couple of nginx modules to generate an validate AWS signatures. We certainly believe that these modules can be very useful to other people, hence we would like to include them in the 3rd party nginx module list. How can we contribute to nginx with our modul