Top "Nginx" questions

Nginx ("engine x") is a web server, reverse proxy, TCP stream proxy and mail proxy, released under a BSD-like license.

upstream sent too big header while reading response header from upstream

I am getting these kind of errors: 2014/05/24 11:49:06 [error] 8376#0: *54031 upstream sent too big header while reading response header from upstream, client: 107.21.193.210, …

php wordpress nginx fastcgi nginx-reverse-proxy
How do I prevent a Gateway Timeout with FastCGI on Nginx

I am running Django, FastCGI, and Nginx. I am creating an api of sorts that where someone can send some …

configuration nginx fastcgi
Nginx reverse proxy causing 504 Gateway Timeout

I am using Nginx as a reverse proxy that takes requests then does a proxy_pass to get the actual …

nginx reverse-proxy proxypass http-status-code-504
nginx upload client_max_body_size issue

I'm running nginx/ruby-on-rails and I have a simple multipart form to upload files. Everything works fine until I decide …

http file-upload nginx
nginx error "conflicting server name" ignored

server { #listen 80; ## listen for ipv4; this line is default and implied #listen [::]:80 default ipv6only=on; ## listen for ipv6 #root /…

nginx
How do I restart nginx only after the configuration test was successful on Ubuntu?

When I restart the nginx service on a command line on an Ubuntu server, the service crashes when a nginx …

ubuntu command-line nginx
How can query string parameters be forwarded through a proxy_pass with nginx?

upstream apache { server 127.0.0.1:8080; } server{ location ~* ^/service/(.*)$ { proxy_pass http://apache/$1; proxy_redirect off; } } The above snippet will redirect requests where …

parameters nginx
(13: Permission denied) while connecting to upstream:[nginx]

I am working with configuring Django project with Nginx and Gunicorn. While I am accessing my port gunicorn mysite.wsgi:…

django python-2.7 nginx gunicorn
nginx: connect() failed (111: Connection refused) while connecting to upstream

Trying to deploy my first portal . I am getting 502 gateway timeout error in browser when i was sending the request …

php nginx fastcgi mod-fastcgi http-status-code-502
How to redirect to a different domain using NGINX?

How can I redirect mydomain.com and any subdomain *.mydomain.com to www.adifferentdomain.com using NGINX?

redirect nginx vhosts