Unanswered Questions
5,969 questions with no upvoted or accepted answers
8
votes
1
answer
3k
views
nginx lua: os.execute waitpid() failed (10: No child processes)
So, I'm trying to execute a script on every request. I know how that sounds, this is for development environment.
I've added this to my nginx config access_by_lua_file "/opt/nginx/git-magic.lua";
...
7
votes
0
answers
12k
views
nginx proxy_pass one file
I have a single file that I want to appear to host but that I don't. So I write this in my nginx server block:
location /d-p27.js {
proxy_pass https://data.example.com/p/piwik.js;
}
After ...
7
votes
1
answer
2k
views
client_body_buffer_size threats
in my current nginx configuration I got:
client_max_body_size 100M;
client_body_buffer_size 1M;
client_max_body_size I need to be set so big.
Unlucky I often got notices when ppl ...
7
votes
0
answers
11k
views
Nginx proxy_pass reverse proxying behind corporate firewall
Has anyone any idea of how to setup nginx behind a corporate firewall, to reverse proxy requests to servers outside the firewall?
The reason I want to do this is I am trying to use an application ...
7
votes
0
answers
3k
views
Nginx returning 408 error with XHR2 file uploads during mid-upload
A customer of mine is trying to upload a file to our remote nginx webserver via a form POST using XHR2 form data (and a cross-domain request with CORS). During mid-upload, the webserver returns a 408 ...
7
votes
1
answer
4k
views
How to debug CGI over fcgiwrap/nginx
I serve executable scripts (mainly in C) through fcgiwrap connected with nginx. Since the scripts are complied, I can get the coding errors during compilation, but sometimes I receive CGI errors ...
7
votes
1
answer
5k
views
Python Threads and uWSGI Harakiri
I have a webapp that is using an API built on nginx, uWSGI, and Django. Recently I have been seeing a lot of harakiris on a particular API call which does some quick processing and then spawns a few ...
7
votes
5
answers
6k
views
Creating a fallback error page for nginx when root directory does not exist
I have set up an any-domain config on my nginx server - to reduce the amount of work needed when I open a new site/domain. This config allows me to simply create a folder in /usr/share/nginx/sites/ ...
6
votes
0
answers
14k
views
SSL_do_handshake() failed (SSL: error:141CF06C:SSL routines:tls_parse_ctos_key_share:bad key share) while SSL handshaking, client:
A few months ago I started getting complaints from dozens of users about getting errors when connecting to my site. When I look into the error.log of nginx I see daily SSL errors:
I have no idea what ...
6
votes
1
answer
23k
views
What is the nginx Variable for a custom Header?
A client is sending a custom HTTP Header X-ABC-LOGIN-NAME to my Nginx reverse proxy. To be sure that it is actually arriving, a PHP server (fastcgi) was installed and this header is really showing up (...
6
votes
0
answers
379
views
How can one php-fpm 5.6 site cause an outage across all sites?
I have a real head scratcher with one site on a server affecting others in separate php-fpm pools. I thought the idea was that php-fpm pools gave isolation to stop (reduce) this from happening.
We ...
6
votes
1
answer
1k
views
Why isn't puma using all of its threads?
I'm using puma and nxinx, and as far as I can tell it is only ever using a single thread even when I start it with the default of 16 threads or more. I've set up a fresh rails app, then gone through ...
6
votes
1
answer
3k
views
Using nginx: require authentication when request from public IP, not needed when local
I wrote a simple file browser app which is served using node on port 3000. I use nginx as a front-end which proxies this service. This is on my home server.
I would like to be able to require basic ...
6
votes
0
answers
3k
views
nginx sticky sessions / ip_hash with Socket.io
I am to be load balancing two node.js/Socket.io instances on different boxes with nginx running a simple notifications service with a retroactive event for new clients.
I don't think there will be ...
6
votes
2
answers
5k
views
Nginx HTTP2 IOS 11 not working
i have problems with HTTP2 protocol on my NGINX server, this is my configuration
listen 443 ssl http2;
server_name adomain.com;
root /var/www/project;
limit_req zone=one burst=60 nodelay;
...