The idea is nice but pointless, if you maintain this list over 6 months you most likely will end up blocking just about everyone. Stick to common sense with your config, lock down nginx and the backends, define proper flood and overflow settings for nginx to deal with, anything beyond the scope of nginx should be dealt with by your ISP perimeter systems.by itpp2012 - Nginx Mailing List - English
Syntax: map_hash_bucket_size size; Default: map_hash_bucket_size 32|64|128; Context: http The err message is valid but may be misleading due to the places you used, a dup msg does not indicate the valid context area.by itpp2012 - Nginx Mailing List - English
benner999 Wrote: ------------------------------------------------------- > I have a very strange thing; I run a setup with Nginx(v1.4.6) as proxy > and Tomcat(v7.0.62) on Ubuntu 14.04 LTS server 1.4 is really old, try a newer version. > It runs fine for some time 10+ hours - and then out of the blue it > gets very slow and at some time I have to restart Tomcat. Restarting &gby itpp2012 - How to...
Ideas: https://www.google.nl/#q=nginx+dynamic+loading+certificate Just one example: http://www.greg-gilbert.com/2015/08/serve-dynamic-ssl-certificates-in-nginx/by itpp2012 - How to...
No costs, plenty of examples to find with google.by itpp2012 - How to...
Tcp proxy functions: https://nginx.org/en/docs/stream/ngx_stream_core_module.htmlby itpp2012 - How to...
proxy_pass http://192.168.1.100:38080; (remove the trailing slash)by itpp2012 - Nginx Mailing List - English
What does this do: location /app1 { rewrite /app1/([^/]+) /$1 break; proxy_pass https://192.168.1.2:8080/; }by itpp2012 - How to...
"GET /api/4/ HTTP/1.1" 404 Means files need to be in /api/4/ Looks like your backend is not looking there or is not configured to serve files from there.by itpp2012 - How to...
Check the logfiles where the file is being looked for, the rewrite changes the client request towards where the backend should have the files requested, that needs to match.by itpp2012 - How to...
Try it without the trailing / in proxypass.by itpp2012 - How to...
location /app1/ { rewrite /app1/([^/]+) /$1 break; proxy_pass https://192.168.1.2:8080/; }by itpp2012 - How to...
It may sound daft, but what advantages has haskell over Lua ? (https://github.com/chaoslawful/lua-nginx-module)by itpp2012 - Other discussion
location /mail { proxy_pass https://192.168.0.2; }by itpp2012 - How to...
Options: -?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit 1.8 is pretty old.by itpp2012 - Other discussion
nginx -Tby itpp2012 - Other discussion
Syntax: open_file_cache off; open_file_cache max=N ; Default: open_file_cache off; Context: http, server, location Default is off so somewhere you must have enabled it, or just force it off. There might be other OS situations/configurations that do such things beneath nginx which causes the same thing.by itpp2012 - Other discussion
Maybe the default is 'on' See also http://mailman.nginx.org/pipermail/nginx/2013-November/041146.htmlby itpp2012 - Other discussion
Look at the logfiles to see the path and php filename which is passed on, might be the path has changed without php.ini having an entry for that path.by itpp2012 - How to...
geopcgeo Wrote: ------------------------------------------------------- > fine on https. But please let me know whats the issue? Is it on Iframe > or > on Nginx. Can anyone please help us? This needs to be fixed in the iframe (or whatever you use to generate this iframe).by itpp2012 - Nginx Mailing List - English
map $request_uri $requri { default 1; /wc-api/ 0; } server { if ($requri) { return 301 https://$host$request_uri; } location /wc-api/ { ... }by itpp2012 - How to...
Sounds like a PHP issue, it should be passed to a php handler but is seen as downloadable.by itpp2012 - How to...
Try 'break'. http://stackoverflow.com/questions/28623938/what-is-the-difference-between-break-and-last-in-nginx-rewriteby itpp2012 - How to...
You can always file a ticket at https://trac.nginx.org/nginx/report/1?sort=ticket&asc=0&page=1by itpp2012 - Other discussion
No you need to tell ghost what it's external port is (used by nginx).by itpp2012 - How to...
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" disableUploadTimeout="true" proxyPort="443" proxyName="app.mydom.nl" It is listening on 8080 but proceedeby itpp2012 - How to...
Homer-S Wrote: ------------------------------------------------------- > 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. Internally a request on port 2368 is passed to 80, locally you might get a reply back from port 80 without you seeing it, externally poby itpp2012 - How to...
A backend is a pool (upstream) for which work is distributed to, the pool size has no bearing to keepalive.by itpp2012 - Nginx Mailing List - English
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 to normal nginx logfiles.by itpp2012 - How to...
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.by itpp2012 - How to...