Try the latest stable and see if this happens again.by itpp2012 - Other discussion
Still down and so are many mirrors (broken or empty updates) Found one still working at https://fourdots.com/mirror/exim/exim-ftp/pcre/ Or get a copy here http://nginx-win.ecsds.eu/download/pcre-8.40-r1664-10-8-2016-svn-src.zip Both cross-platform sources.by itpp2012 - Nginx Mailing List - English
gdalton240 Wrote: ------------------------------------------------------- > stream { > server { > listen *:80; > root /etc/nginx/; root has no meaning when using stream {} since 'stream' just a tcp proxy.by itpp2012 - How to...
Always possible, check the logfiles to see what is getting passed and on what exactly nginx is giving the error, Curl is best used here.by itpp2012 - How to...
Brent Clark Wrote: ------------------------------------------------------- > Vary: User-Agent See https://forum.nginx.org/read.php?2,262943,262943#msg-262943by itpp2012 - Nginx Mailing List - English
Several months? do you have a sign outside your building saying "welcome hackers, do come in the backdoors are open" ? Never heard of DTAP ? (development, test, acceptance, production), get yourself free virtualization software, virtualise your production system and start testing, get your RFC ready for your CAB before this problem becomes the least of your worries.by itpp2012 - Other discussion
1.7.4 is rather old, try the latest stable version and see if this solves the issue.by itpp2012 - Other discussion
Anyone any idea what happened to www.pcre.org ?by itpp2012 - Nginx Mailing List - English
This is a Lua feature and will always work because its not directly related to nginx-core. Search for openresty.by itpp2012 - How to...
Ask for a whitelisting at the firewall. Use a mirror system and copy the repo so it can be accessed elsewhere. Use an internal repo distribution system.by itpp2012 - Other discussion
>> Even typing in https://www.site3.com redirects me on http://site4.com The application running at http://site4.com might be rewriting this because it is configured to do so, you may need to tell this backend about its new proxy frontend.by itpp2012 - How to...
When compressing (nginx) an already compressed stream (backend) that stream usually gets bigger.by itpp2012 - Nginx Mailing List - English
https://forum.nginx.org/read.php?9,263438by itpp2012 - How to...
The 413 is coming from your backend.by itpp2012 - Nginx Mailing List - English
Check the nginx logfiles, or enable debug logging to see exactly what is happening.by itpp2012 - How to...
If the data you serve does not live in /data/www then change the root value.by itpp2012 - How to...
location /something/ gets added to the root value.by itpp2012 - How to...
It looks like this is not (yet) supported, see https://www.google.nl/#q=fastcgi+param+php_value+open_basedir ea. https://github.com/facebook/hhvm/issues/3730by itpp2012 - How to...
Sounds like this add-on: https://github.com/alibaba/nginx-http-concatby itpp2012 - Nginx Mailing List - English
See https://forum.nginx.org/read.php?2,267651 at this level nginx is not an advanced all layer firewall/ids/dds tool.by itpp2012 - Nginx Mailing List - English
A 400 doesn't reach location blocks.by itpp2012 - Nginx Mailing List - English
Enable debug error logging and nginx will tell you exactly which request matches what location and what it returns from that.by itpp2012 - How to...
There must be something in the nginx logs or php logs, sounds like a nginx root setting or php root/base setting.by itpp2012 - How to...
2016/07/12 22:04:31 16736#16736: *8 trying to use file: "/index.php" "/usr/share/nginx/html/index.php" (...) 2016/07/12 22:04:31 16736#16736: *8 open() "/usr/share/nginx/html404" failed You will have to investigate if those files are there, maybe a rights issue.by itpp2012 - How to...
Look in the nginx logfiles, or enable debug logging to see which location block is doing what.by itpp2012 - How to...
Look at this line fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_nam$; Which would also be in the logfiles.by itpp2012 - How to...
You can manually apply the patches and recompile.by itpp2012 - Nginx Mailing List - English
If you can't set different blocks for different locations you can always create multiple maps and use them wherever you need . Albeit its a bit moot to duplicate geo conditions but it would do what you want.by itpp2012 - How to...
From what I can see it looks like you have some links that stop FF from continuing to load the rest of the pages, maybe some external link which expects the source to be from some specific origin, look at the source from FF, you can see some parts are loaded but the page remains blank.by itpp2012 - How to...
Try it with a simple index.html file with one line in it.by itpp2012 - How to...