Re: issue with Oracle HTTP Server 10.1.3
Could be, the idea was once a cipher is forced it either works or you get some other error pointing to the real problem. However you need to translate that cipher value into what nginx configuration...
View ArticleSSL handshake failure
Hello. I am having a problem with establishing SSL connection between an Apache proxy and Nginx, connection fails during handshake with Alert 21 message. Other clients have no problem connecting to...
View ArticleRe: SSL handshake failure
Also, the nginx log excerpt: 2016/04/30 14:36:55 [info] 25632#0: *1 SSL_do_handshake() failed (SSL: error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher) while SSL handshaking, client:...
View ArticleRe: SSL handshake failure
Maybe this http://stackoverflow.com/questions/33806038/nginx-error-no-shared-cipher-but-there-are
View ArticleRe: SSL handshake failure
Thanks for the suggestion. Unfortunately, the issue persists. According to tcpdump output and RFC (if I interpreted it correctly), the issue occurs because the client and the server cannot agree about...
View Articlereverse proxy
I need to achieve below test case using nginx: www.example.com/api/ should redirect to ABC.com/api, while www.example.com/api/site/login should redirect to XYZ.com/api/site/login But in the browser,...
View ArticleRe: issue with Oracle HTTP Server 10.1.3
NGINX wants to have a cipher, that matches the output of "openssl ciphers", right? With "openssl ciphers -V" (which outputs the binary value of the Cipher, too), I found that TLS_RSA_WITH_RC4_128_SHA...
View ArticleRe: issue with Oracle HTTP Server 10.1.3
You can try the mailing list at https://forum.nginx.org/list.php?2 or the openssl forum on google groups, a detailed wireshark capture might be helpful for some to figure out what is going on.
View ArticleOverride HTTP-Method
Hello, is it possible to override the $request_method? I have the problem that a well known client tries to place a request with method "0". This has its roots in a bug that would take long time to...
View ArticleRe: Override HTTP-Method
Maybe this is helpful http://stackoverflow.com/questions/15362038/nginx-change-request-from-put-to-post
View ArticleRe: Override HTTP-Method
Thank you for your reply. I would like to try this but i have no idea how to do this without php. My setup comes without php. It is a simple reverse proxy. Is it possible to pass this to the...
View ArticleRe: Override HTTP-Method
Hello, i tried the following config: add_header XX-method: $request_method; add_header bla-method: $bla_method; map $request_method $bla_method { default $request_method; 0 POST; BLA POST; } server {...
View ArticleRe: Override HTTP-Method
Try with Curl, check what it reports back including the headers and check the logfiles to see what Curl reports can be found in the logs.
View ArticleRe: Override HTTP-Method
Thats what I did. The Error-Log says: 3 client sent invalid method while reading client request line, client: 127.0.0.1, server: localhost, request: "0 /" And Curl: HTTP/1.1 400 Bad Request Server:...
View ArticleRe: Override HTTP-Method
Correct, a 400 is handled internally before any other handler, see also https://forum.nginx.org/read.php?2,158557,158557#msg-158557
View ArticleRe: Override HTTP-Method
Is there any possibility to change the method before the 400 happens?
View ArticleRe: Override HTTP-Method
Maybe with Lua, otherwise you need to hack the code to not handle a 400, a grep for 400 and a grep for some other code which works as desired may give you an idea what to do. nginx does not waste time...
View ArticleThe 192.168.1.161 page isn’t working
I new to nginx and can't figure out what the problem is. Any help would be appreciated. The 192.168.1.161 page isn’t working 192.168.1.161 is currently unable to handle this request. 500 My error log...
View Article