Re: rakoto

2017-08-10 Thread mayak
Aina Vaovao! Try putting this into a conf file with an mp4:     location ~ \.mp4$ {     mp4;     } If it works, your streaming module would have automatically loaded. Veloma M On 08/10/2017 07:54 PM, Andry Thierry

Re: Blocking tens of thousands of IP's

2016-11-08 Thread mayak
blocking 2.2 million addresses, however, we do it at the firewall/router (pfsense pfBlocker). Ultra fast. HTH Mayak ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

binary cgi script download instead of executing

2016-05-02 Thread mayak
hi all, i have simply broken my brain trying to execute a `cgi` script that requires no interpreter -- just execute the cgi binary with the query portion of the url, and it spits out html content. no matter what i do, i always end up with ELF> GARBAGE  -- the cg

cannot make catch all ssl server block work [corrected]

2014-10-13 Thread mayak
hi all, i'm having trouble with nginx: #nginx -V nginx version: nginx/1.6.2 built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) TLS SNI support enabled so i use .conf files in the /etc/nginx/conf.d directory server { listen 443 default_server; server_name a.domain.com *.domain.com

cannot make catch all ssl server block work

2014-10-12 Thread mayak
hi all, i'm having trouble with nginx: #nginx -V nginx version: nginx/1.6.2 built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) TLS SNI support enabled so i use .conf files in the /etc/nginx/conf.d directory server { listen 443 default_server; server_name a.domain.com *.domain.com;

Re: nginx centos build only supports SSLv3 and ignores ssl_protocols[solved -- found an issue in nginx]

2014-10-02 Thread mayak
On 10/02/2014 02:49 PM, Rob Stradling wrote: Hi. Visit https://www.ssllabs.com/ssltest/viewMyClient.html and check out "Protocol Details -> Signature algorithms". I expect you'll find that your browser doesn't offer SHA512/RSA. Judging from a recent discussion on the IETF TLS list [1], there

Re: nginx centos build only supports SSLv3 and ignores ssl_protocols [solved -- found an issue in nginx]

2014-10-01 Thread mayak
hi all, indeed -- i generated a new set of certs and tested: a signature of sha256 results in TLSv* begin offered a signature of sha512 results in TLSv* _not_ being offered certs with 4096 bit keys work fine i suspect that there is a variable that is not long enough to support the signature ..

Re: nginx centos build only supports SSLv3 and ignores ssl_protocols

2014-10-01 Thread mayak
On 10/01/2014 08:45 PM, Lukas Tribus wrote: btw, it seems impossible to have ... ssl_protocols TLSv1.2; ... and a testresult of SSLv2 NOT offered (ok) SSLv3 offered TLSv1 not offered TLSv1.1 not offered TLSv1.2 not offered No, its very possible. A SSL_CTX_set_ssl_version() call can fail, or t

Re: nginx centos build only supports SSLv3 and ignores ssl_protocols

2014-10-01 Thread mayak
On 10/01/2014 04:54 PM, Lukas Tribus wrote: thanks for your note -- i totally forgot to give specifics: - CentOS 6.5, x64, totally up2date - OpenSSL 1.0.1e-fips 11 Feb 2013 - nginx-1.6.2-1.el6.ngx.x86_64 (from nginx repo) - openssl-1.0.1e-16.el6_5.15.x86_64 - openssl-devel-1.0.1e-16.el6_5.15.x8

Re: nginx centos build only supports SSLv3 and ignores ssl_protocols

2014-10-01 Thread mayak
On 10/01/2014 02:33 PM, mex wrote: this probably depends on the underlaying openssl-version from your os. what does 'openssl version' says? if you want nginx with newer openssl-version you can build a custom nginx witth openssl statically linked https://www.mare-system.de/guide-to-nginx-ssl-spd

nginx centos build only supports SSLv3 and ignores ssl_protocols

2014-10-01 Thread mayak
hi all, i have several nginx sites, and as i try to deploy ssl, i am having issues with `ssl_protocols` ... ssl on; ssl_certificate /etc/x509V6/domain.crt; ssl_certificate_key /etc/x509V6/domain.key; ssl_session_cache off; ssl_protocols TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers ECDH