Re: TCPv6: Possible SYN flooding on port 80. Sending cookies.
Done on both user facing servers but no improvement : nginx_stats of server with more writing req : Active connections: 7273 server accepts handled requests 221000 221000 257718 Reading: 0 Writing:...
View ArticleRe: TCPv6: Possible SYN flooding on port 80. Sending cookies.
Possible reasons: http://stackoverflow.com/questions/28823254/too-many-nginx-waiting-connections https://forum.nginx.org/read.php?2,49182,49196#msg-49196...
View ArticleRe: Help grabbing single option from upstream header.
Well, i guess this is a useless forum lol....
View Articlessl config error
hey guys im getting an error message when trying to use ssl on my server: [emerg] 3108#6408: SSL_CTX_use_PrivateKey_file("C:\Users\Server\Desktop\host\myterms.co.uk\nginx/conf/ssl/myterms_co_uk.key")...
View ArticleRe: Help grabbing single option from upstream header.
https://www.google.nl/#q=nginx+log+header+from+upstream https://forum.nginx.org/read.php?2,217896,217896#msg-217896
View ArticleRe: wrong format when displaying nodejs page
Please, is there nobody out there who knows a hint or at least maybe some different place to raise the question? Thanks, you see me really desperate.
View ArticleRe: Help grabbing single option from upstream header.
Yea....... I know how to log a header... Please READ my post... its asking how do i log the SINGLE UserId value... This header contains multiple comma delimited values for the single header value...
View ArticleRe: wrong format when displaying nodejs page
On the external page you don't see the port number being used (2368), so the browser defaults to try to use port 80 from which nothing is coming from and why you don't get all page elements.
View ArticleRe: Help grabbing single option from upstream header.
You asked "header being sent from the upstream server" and thats what those results show. If you want to log a part of such value you could try a regex via 'map', or a regex via Lua but Lua can't write...
View ArticleRe: wrong format when displaying nodejs page
OK, I think I see the point, but how do I fix it. Because I thought with proxy_pass http://127.0.0.1:2368/ghost; I am forwarding the port 80 to 2368. Maybe I should show more of my config file: Sorry...
View ArticleRe: wrong format when displaying nodejs page
Homer-S Wrote: ------------------------------------------------------- > OK, I think I see the point, but how do I fix it. Because I thought > with > > proxy_pass...
View ArticleRe: wrong format when displaying nodejs page
To illustrate what I mean look at this tomcat example: <!-- This connector is for normal HTTP connections --> <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="30000"...
View ArticleRe: wrong format when displaying nodejs page
Thanks for your patience and help. Just to help me if I understood it right. the request from 192.168.100.67/blog is forwarded to 127.0.0.1:2368/blog but if ghost is sending something it is trying to...
View ArticleRe: wrong format when displaying nodejs page
No you need to tell ghost what it's external port is (used by nginx).
View ArticleRe: wrong format when displaying nodejs page
One more thing which may help to find the solution. I just found out ghost ist logging in real time in terminal window. First I tried to access from a Laptop by 192.168.100.67 Secondly I did an access...
View ArticleDetection of external client disconnect
Hi, We are using Nginx along with FCGI library. We are investigating an issue where in an external client disconnects from the network after send a request to our Nginx server. We are using...
View ArticleRe: Detection of external client disconnect
Hi, We further tried using following options in the configuration file which seems to work for responses which have lot of data. fastcgi_buffering off; proxy_buffering off; But, still for responses...
View Articledynamic auth url
I am trying to create a dynamic auth address # grab ssoid map $cookie_SSOID $ssoid_cookie { default ""; ~SSOID=(?P<ssoid>.+) $ssoid; } location /imaadmin/ { proxy_cache off; proxy_pass...
View ArticleBasic auth not working with rewrite
I need to protect one directory with the basic auth and rewrite all urls inside this directory only. I have the following config: location /admin/ { auth_basic "Secure area"; auth_basic_user_file...
View Article