nginx (pronounced “engine-x”) is a lightweight, high-performance Web server/reverse proxy and e-mail (IMAP/POP3) proxy, licensed under a BSD-like license.

learn more… | top users | synonyms

90
votes
15answers
48k views

Apache vs nginx vs lighttpd? Which is simpler to configure and administer?

Apache vs nginx vs lighttpd? Which is simpler to configure and administer? A bit more context, in case this question is too general: the uses I have in mind are running Django and serving static ...
51
votes
1answer
40k views

How do I prevent a Gateway Timeout with Nginx

I am running Django, FastCGI, and Nginx. I am creating an api of sorts that where someone can send some data via XML which I will process and then return some status codes for each node that was sent ...
41
votes
2answers
10k views

node.js + nginx - And now?

I've set up node.js and nginx on my server. Now I want to use it, but, before I start there are 2 questions: How should they work together? How should I handle the requests? There are 2 concepts for ...
29
votes
5answers
8k views

Can nginx be used as a reverse proxy for a backend websocket server?

We're working on a Ruby on Rails app that needs to take advantage of html5 websockets. At the moment, we have two separate "servers" so to speak: our main app running on nginx+passenger, and a ...
27
votes
4answers
12k views

In production, Apache + mod_wsgi or Nginx + mod_wsgi?

What to use for a medium to large python WSGI application, Apache + mod_wsgi or Nginx + mod_wsgi? Which combination will need more memory and CPU time? Which one is faster? Which is known for being ...
21
votes
2answers
1k views

Why use Mongrel2?

I'm confused what purpose Mongrel2 serves/provides that nginx doesn't already do. (Yes, I've read the manual but I must to be too much of a noob to understand how it's fundamentally different than ...
17
votes
2answers
516 views

nginx, fastcgi and open sockets

I'm experimenting using fastcgi on nginx, but I've run into some problems. Nginx doesn't reuse connections, it gives 0 in BeginRequest flags, so the application should close the connection after the ...
16
votes
2answers
3k views

What is the benefit of using NginX for Node.js?

For what I understand Node.js doesnt need NginX to work as a http server (or a websockets server or any server for that matter), but I keep reading about how to use NginX instead of Node.js internal ...
16
votes
2answers
2k views

Passenger hosted Rails app *painfully* slow, but the server is a beast

I have been working to deploy a relatively large Rails app (Rails 2.3.5) and recently doing some load testing we discovered that the throughput for the site is way below the expected level of traffic. ...
15
votes
5answers
5k views

How to gracefully restart django running fcgi behind nginx?

I'm running a django instance behind nginx connected using fcgi (by using the manage.py runfcgi command). Since the code is loaded into memory I can't reload new code without killing and restarting ...
14
votes
6answers
5k views

What web server to use for Lua web development

What web server (and why) should I use for Lua web development?
12
votes
7answers
7k views

nginx proxy to comet

I need some help from some linux gurus. I am working on a webapp that includes a comet server. The comet server runs on localhost:8080 and exposes the url localhost:8080/long_polling for clients to ...
12
votes
6answers
8k views

How do you change server tag for nginx?

There's an option to hide the version so it will display only nginx, but is there a way to hide that too so it will not show anything or change it?
11
votes
2answers
479 views

Advantages of a reverse proxy in front of Node.JS

What are the advantages of having nginx or another web-server running as a reverse-proxy in front of the Node.JS? What does it provide? (This question is intended for matters concerning web-apps, not ...
11
votes
1answer
2k views

How does Nginx handle HTTP requests?

I understand thread driven that Apache uses: every connection opens up a thread and when the response is sent, the thread is closed, releasing the resources for other threads). But I don't get the ...
11
votes
2answers
2k views

Is 'epoll' the essential reason that Tornadoweb(or Nginx) is so fast?

Tornadoweb and Nginx are popular web servers for the moment and many benchmarkings show that they have a better performance than Apache under certain circumstances. So my question is: Is 'epoll' the ...
10
votes
4answers
4k views

Rails sends 0 byte files using send_file

I can't get send_file(Model.attachment.path) to work. It doesn't fail, instead, it sends a 0 byte size file to the client, the file names are correct though. This problem started happening after I ...
10
votes
4answers
5k views

Is GridFS fast and reliable enough for production?

I develop a new website and I want to use GridFS as storage for all user uploads, because it offers a lot of advantages compared to a normal filesystem storage. Benchmarks with GridFS served by nginx ...
10
votes
5answers
5k views

Is node.js ready for production use?

Starting a new project. It's basically a blogging/commenting system. We're considering node.js as the back end server. Is node.js ready for this sort of thing or is it too early and experimental? ...
10
votes
3answers
17k views

Nginx - Customizing 404 page

Nginx+PHP (on fastCGI) works great for me, but when I enter a path to a PHP file which doesnt exit, instead of getting the default 404 error page (which comes for any invalid .html file), I simply get ...
9
votes
5answers
6k views

Error: No module named staticfiles

I'm newbie with django, I'm trying to deploy my project on a production server but I'm getting this error: Error: No module named staticfiles When trying to start the server: python manage.py ...
9
votes
2answers
1k views

Why use nginx with Catalyst/Plack/Starman?

I am trying to deploy my little Catalyst web app using Plack/Starman. All the documentation seems to suggest I want to use this in combination with nginx. What are the benefits of this? Why not use ...
9
votes
4answers
4k views

How to avoid nginx “upstream sent too big header” errors?

I'm running nginx, Phusion Passenger and Rails. I am running up against the following error: upstream sent too big header while reading response header from upstream, client: 87.194.2.18, server: ...
9
votes
2answers
2k views

Why use Apache over NGINX/Cherokee/Lighttpd?

Apache has been the de facto standard web server for over a decade, but recent years have brought us web servers that consume less RAM and handle many more requests per second using fewer threads and ...
9
votes
1answer
13k views

How to serve all existing static files directly with NGINX, but proxy to Apache the rest?

location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; if (-f $request_filename) { ...
8
votes
1answer
291 views

A curious string copy function in C

When I was reading the nginx code, I have seen this function : #define ngx_cpymem(dst, src, n) (((u_char *) memcpy(dst, src, n)) + (n)) static ngx_inline u_char * ngx_copy(u_char *dst, u_char ...
8
votes
3answers
474 views

Http POST drops port in URL

I have a webapp built with Django. I'm currently running it off a laptop at home behind a router. I have the router configured to route all traffic sent to a specific port to that laptop. I have ...
8
votes
4answers
1k views

nginx and trailing slashes on $document_root?

I use the following configuration for nginx: http://gist.github.com/340956 However, this configuration causes a No input file specified error with PHP. The only way I have been able to solve it is by ...
8
votes
1answer
789 views

How do I get killed using Perl FCGI?

I'm having a little problem with nginx and the Perl FCGI module. I have a long operation in my FCGI program that may outlive the server (or the user on the server) on the other end of the Unix socket ...
8
votes
1answer
2k views

CherryPy behind Nginx reverse-proxy POST requests corrupted/truncated

I have put my application using Cherrypy 3.1.2 behind Nginx configured as a reverse-proxy. All is working right for GET requests, but all POST requests return HTTP 400 - Malformed header. I traced ...
8
votes
2answers
11k views

Nginx location directive doesn't seem to be working. Am I missing something?

I've set up Nginx as my main web server and have two Mochiweb based servers behind it. Certain requests are reverse-proxied to these two servers. now, I want to access phpmyadmin (located at ...
8
votes
1answer
4k views

Serving Large Files Through Nginx via Rails 2.3 Using x-sendfile

Let's say I have a Rails 2.3.2 application fronted by nginx and served by mongrel in which I need to serve a large static file through Rails (to control access to it). I want the Rails app to delegate ...
8
votes
2answers
9k views

how to nginx virtual servers + fcgi for django?

I would like to run several virtual hosts via nginx, each serving a different django app via fcgi. Is this possible? If so, does anyone have good resources on where/how to start? The nginx docs seem ...
8
votes
4answers
4k views

How to configure nginx to work with Jetty6 webserver?

It seems that nginx is used with php, ruby and python. Anyone has an example of how to setup nginx to work with jetty/tomcat in backend? Thanks.
8
votes
4answers
2k views

What's the best way to run Wordpress on the same domain as a Rails application?

I've got a standard Rails app with Nginx and Mongrel running at http://mydomain. I need to run a Wordpress blog at http://mydomain.com/blog. My preference would be to host the blog in Apache running ...
7
votes
3answers
222 views

What is best choice for realtime web app development? [closed]

I have decided to make a new web app. The web app would be high concurrency and using Socket.io. to implement streaming data in realtime. I have implemented socket.io with PHP before. Every moves ...
7
votes
7answers
318 views

PHP default headers question

When I simply echo something out of php file, I do not send any headers intentionally, however - there are some default headers present anyway when I look at firebug response: response headers: ...
7
votes
3answers
6k views

custom HTTP headers for static files with Django

I'm writing an image bank with Django, and I want to add a button to get a hi-res version of an image (the low-res is shown in the details page). If I put just an <a> link, the browser will ...
7
votes
3answers
2k views

nginx setup question

I know this is not directly a programming question, but people on stackoverflow seems to be able to answer any question. I have a server running Centos 5.2 64 bit. Pretty powerful dual core 2 server ...
6
votes
0answers
70 views

Nginx gzip filter not work with my custom handler

I wrote a very simple nginx handler,just output some text (size 100B to 10KB). the code works properly with nginx( ver 1.0.6) but I found gzip filter can not work with the handler . when I turn ...
6
votes
2answers
302 views

nginx match specific word in location

I am having trouble matching a specific word in nginx $request_body variable. I want to proxy pass if the body request has a special word in it, So my approach is this: location ~ \.php$ { if ...
6
votes
3answers
310 views

600+ memcache req/s problems - help!

I am running memcached on my server and when it hits 600+ req/s it becomes unstable and causes a big load of problems. It appears when the request rate gets that high, my PHP applications at random ...
6
votes
2answers
577 views

(https)Nginx --> (http)Play!. But request.secure is false

Configured Nginx as reverse proxy in front of Play! and passing https with the following headers set :- proxy_set_header X-Forwarded-Proto https; proxy_set_header ...
6
votes
1answer
1k views

How to deply web2py using nginx?

web2py is an awesome python framework which has great documentation including several deployment recipes. Yet what I miss there is the recipe for deploying using nginx (preferably with uwsgi). There ...
6
votes
1answer
434 views

How can I avoid getting a 502 Gateway Error while restarting php-fpm?

When restarting the php-fpm service on my Linux system, the PHP CGI process take a while to shutdown completely. Until it does, trying to start a new PHP CGI instance fails because port 9000 is still ...
6
votes
6answers
379 views

Serve static files from archive

Is there a module for apache/nginx to serve static files from archive (zip, tgz, tbz …), so that if there is no file in specified location, then stated archive is asked for that file?
6
votes
3answers
2k views

nginx/apache/php vs nginx/php

I currently have one server with nginx that reverse_proxy to apache (same server) for processing php requests. I'm wondering if I drop apache so I'd run nginx/fastcgi to php if I'd see any sort of ...
6
votes
2answers
1k views

nginx and Perl: FastCGI vs reverse proxy (PSGI/Starman)

A very popular choice for running Perl web applications these days seems to be behind a nginx webserver proxying requests to either a FastCGI daemon or a PSGI enabled webserver (e.g. Starman). There ...
6
votes
2answers
576 views

Mono MVC 2 home route doesn't work

I'm trying to convert an ASP .NET MVC 2 app to run on nginx/mono 2.8. So far it seems to work quite well except that the default route doesn't work when the path is empty. I am proxying all requests ...
6
votes
2answers
1k views

multiple HTTP GET requests in one TCP/IP connection - processed parallel or sequential

we get a lot of googlebot requests. googlebot requests up to 11 different files via 11 HTTP GET request, all in one single TCP/IP connection. are these GET request (all in the same TCP/IP ...

1 2 3 4 5 37