Nginx ("engine x") is a lightweight, high-performance HTTP server, reverse proxy and mail proxy, released under a BSD-like license.

learn more… | top users | synonyms | nginx jobs

6
votes
2answers
1k 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
1answer
2k views

Nginx + PHP-FPM + FastCGI cache configuration for Magento

Some of you may have already noticed the recent Optimizing Magento For Peak Performance white paper released by Magento a few days ago. Even though it was mainly written for EE users, I believe we can ...
6
votes
2answers
463 views

Redirect a known folder on subdomain to main site for nginx

I have several subdomain based sites in my CMS like: a.site.com b.site.com All uploaded files are under the /upload directory like: site.com/upload/2012/a.jpg But URL's are generated like this: ...
6
votes
2answers
588 views

Omniauth and open_id with Google broken when running behind nginx in SSL mode

Rails 3.0.12, newest omniauth, I can connect to Google and get the user's email address just fine. But then I run that same rails app behind nginx in SSL mode, and it fails with the Google page: "The ...
6
votes
1answer
367 views

Linux user scheme for a Django production server

I'm currently trying to set up nginx + uWSGI server for my Django homepage. Some tutorials advice me to create specific UNIX users for certain daemons. Like nginx user for nginx daemon and so on. As ...
6
votes
1answer
1k views

How does session/authentication work with nginx/NHPM/PHP-FPM?

So, I'm looking at architecting an application using nginx with the nginx-http-push-module and PHP-FPM, and after lots of fun configuring, I got it working to the point of handling PHP pages as it ...
6
votes
3answers
1k views

SSL slowness in EC2

We've deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...
6
votes
3answers
754 views

How to disable output buffering in nginx for PHP application

We have code similar to this: <?php ob_implicit_flush(true); ob_end_flush(); foreach ($arrayOfStrings as $string) { echo time_expensive_function($string); } ?> In ...
6
votes
2answers
295 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
0answers
261 views

504 Gateway Time-out after php fatal error [closed]

I'm using nginx and php-fpm to develop a symfony2 based website, under ubuntu 12.10 (yes, I know I'm using a beta OS). Everything was working out fine until, due to an error on my code, I called an ...
6
votes
1answer
2k views

Cannot spawn application

I have rvm, passenger, ruby 1.9.3, nginx but I now get this error Cannot spawn application '/path/to/my/app': Could not read from the spawn server: Connection reset by peer (104) I have ...
6
votes
2answers
1k 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
2answers
2k views

Best method of post processing Nginx reverse proxy response

I'm doing some researching on switching from Apache to Nginx as a reverse proxy in front of a Grails application on the backend. I'm playing around with some URL rewriting and have run into an issue ...
5
votes
2answers
3k views

Nginx variables similar to SetEnv in Apache?

I use SetEnv in Apache to set some variables in virtualhosts that I recover in Php using $_SERVER[the_variable]. Now I am switching to Perl Catalyst and Nginx, but it seems that the "env" directive ...
5
votes
2answers
2k views

Rails 3, Authlogic, NGINX and HTTP basic authentication no working nicely together

I am in the early stages of building an app using Rails 3. User authentication is powered by Authlogic which I have setup pretty much as standard (as per the example docs) and everything is working as ...
5
votes
2answers
5k views

how to deflate js file in nginX?

i'm looking for "how to compress load time js file"... and i try the solution of my question (i'm using Extjs).... my friend suggest this too. but, it use apache as web server... anybody know how to ...
5
votes
3answers
4k views

How can Nginx return a 404 when URL like some patterns?

I want the Nginx to return a 404 code when process url like /test/*. How can I do that?
5
votes
2answers
8k views

nginx: how do i add new site/server_name in nginx?

I'm just starting to explore nginx on my ubuntu 10.04. I installed nginx and I'm able to get teh "Welcome to Nginx" page on localhost. However I'm not able to add a new server_name, even when I make ...
5
votes
2answers
2k views

Can my /public directory be a symlink with rails 3 + passenger 3 + nginx 0.8?

I'm putting together a rails deployment where the public directory is a symlink to another directory on the system. This is with passenger 3 on nginx .8. It does't seem to like that setup. Nginx ...
5
votes
3answers
2k views

How to run CGI scripts on Nginx

I have problem setting up CGI scripts to be run on Nginx, so far I've found http://wiki.nginx.org/SimpleCGI this stuff but problem is that I can't make perl script run as service so that it will run ...
5
votes
1answer
4k views

Nginx and favicon.ico - “GET /favicon.ico HTTP/1.1” FAILED

How to I get rid of all the below errors in nginx. I do not have a favicon.ico 2012/03/11 17:13:25 [error] 959#0: *116 open() "/usr/local/nginx/html/favicon.ico" failed (2: No such file or ...
5
votes
3answers
889 views

How can I address c10k problem if I am using PHP?

I am deciding on the architecture of an application where "Http KeepAlive" and "long polling" will be used for faster response. Is there anything for PHP which solves the problem that Tornado does for ...
5
votes
3answers
3k views

how can I create a file with file_put_contents that has group write permissions?

I am using file_put_contents to create a file. My php process is running in a group with permissions to write to the directory. When file_put_contents is called, however, the resulting file does not ...
5
votes
2answers
9k views

How do I convert mod_rewrite (QSA option) to Nginx equivalent?

I'm looking to convert the following mod_rewrite rule to the Nginx equivalent: RewriteRule ^foo/(.*)$ /bar/index.php?title=$1 [PT,L,QSA] RewriteRule ^foo/*$ /bar/index.php [L,QSA] So far I have: ...
5
votes
2answers
2k views

Why install server (Nginx, Apache…) with Node.js? [duplicate]

Possible Duplicate: Why do we need apache under Node.js express web framework? I wonder why I should install a server such as Nginx or Apache with Node.js. I used to think that the server ...
5
votes
4answers
3k views

Running lua under nginx (writing a website with lua)

As a learning exercise i've dedicated some time to picking up lua by creating some basic apps. I've gotten it installed and running great on Natty/Ubuntu, however, I'm a bit lost as to how to get it ...
5
votes
2answers
1k views

Is there any way to configure nginx (or other quick reverse proxy) dynamically?

Suppose we have several identical nodes which are the application servers of some n-tier service. And suppose we use Apache ZooKeeper to keep all the config's of our distributed application. Plus we ...
5
votes
2answers
2k views

Nginx daemon stop is failing

I've got Ubuntu 11.04 i386 server with nginx 1.0.11 installed. Also, I'm using this init.d script, the only one I've found in several different places. It starts the server nicely, however, on ...
5
votes
5answers
11k views

Logging POST data from $request_body

I have my config setup to handle a bunch of GET requests which render pixels that work fine to handle analytics and parse query strings for logging. With an additional third party data stream, I need ...
5
votes
2answers
2k views

How to detect X-Accel-Redirect (Nginx) / X-Sendfile (Apache) support in PHP?

About Application I am working on an e-commerce application in PHP. To keep URL's secure, product download links are kept behind PHP. There is a file, say download.php, which accepts few parameter ...
5
votes
3answers
4k views

Multi Site Wordpress rewrite rules in Nginx

I'm trying to run a multi domain blog installation with Wordpress and Nginx. The last step is to configure some rewrite rules in .htaccess (apache only) for the webserver. How so I translate this into ...
5
votes
7answers
18k views

Drupal + Nginx + Php-cgi : 502 Bad Gateway error

We are running Drupal 5.x on Nginx with php-fastcgi. Things were working fine for a while. All of a sudden, we (users) are running into 502 Bad Gateway error. Restarting PHP-cgi, nginx.. rebooting ...
5
votes
1answer
1k views

Gunicorn and Django with Upstart and Nginx

First of all I have many Django instances setup and running like this. In each project I have a script.sh shell script that starts gunicorn etc.: #!/bin/bash set -e ...
5
votes
1answer
1k views

What does the deferred option mean in NGINXs listen directive?

I've seen example NGINX configurations with the "deferred" option added to the listen directive server { listen 80 default deferred; ... } I can't work out what it does (and whether or not I ...
5
votes
2answers
2k views

How to fix Sinatra redirecting https to http under nginx

I have a Sinatra app running in nginx (using thin as a back-proxy) and I'm using redirect '/<path>' statements in Sinatra. However, when I access the site under https, those redirects send me to ...
5
votes
3answers
2k views

How to use nginx with PHP?

What is a good way of using PHP with nginx? From the finding I got, maybe using PHP-FPM might be a good way of handing PHP behind nginx. The problem we have is that the free web based API we serve ...
5
votes
1answer
599 views

Is it possible to use modify nginx config file and use X-Accel-Redirect on Heroku?

Reading this article on nginx website, I'm interested in using X-Accel-Redirect header in the way that Apache or Lighttpd users might use the X-Sendfile header to help with the serving of large files. ...
5
votes
2answers
2k views

Should I go with Varnish instead of nginx?

I really like nginx. But recently I've found that varnish gives you an opportunity to implement smart caching revers proxy layer(with URL purging). I have a cluster of mongrels which are pretty ...
5
votes
2answers
4k views

nginx subdomain rewrite

Yet another nginx rewrite rule question How can I do a rewrite from http://www.*.domain.com to http://*.domain.com ? thanks in advance Deb
5
votes
1answer
8k views

Error 502 in nginx + php5-fpm

I have some error with subj. Server doesn't high loaded: ~15% CPU, there are several Gb of memory, HDD is not buisy. But error 502 throws approximately in 3% of cases. Programs: Debian 6, ...
5
votes
3answers
6k views

NGinx SSL certificate authentication signed by intermediate CA (chain)

I am trying to enable client certificate authentication in nginx where the certificates have been signed by an intermediate CA. I am able to get this working fine when using a certificate signed by a ...
5
votes
5answers
1k views

Nginx and Apache

is it useful to server static data using Nginx(Images,css,js) and dynamic data (App code+database) using Apache ?
5
votes
3answers
1k views

Deploying django under a sub-URL with Nginx/Fastcgi

I can't for the life of me figure out how to deploy a django site under a non-root location with Nginx/fastcgi, e.g. http://localhost:8080/myproject/ instead of http://localhost:8080/; all the ...
5
votes
4answers
2k views

Send Redirects To Specific Ports

I have an Rails application server that is listening on port 9000, and is being called through haproxy. All my redirects from that server are being redirected back through port 9000, when they should ...
5
votes
4answers
10k views

nginx errors readv() and recv() failed

I use nginx along with fastcgi. I see a lot of the following errors in the error logs readv() failed (104: Connection reset by peer) while reading upstream and recv() failed (104: Connection ...
5
votes
1answer
2k views

Serving two sites from one server with Nginx

I have a Rails app up and running on my server and now I'd like to add another one. I want Nginx to check what the request is for and split traffic based on domain name Both sites have their own ...
5
votes
3answers
1k views

nodejs response speed and nginx

Just started testing nodejs, and wanted to get some help in understanding following behavior: Example #1: var http = require('http'); http.createServer(function(req, res){ res.writeHeader(200, ...
5
votes
1answer
270 views

Need help converting Apache2 Rewrite rules to nginx

I've managed to convert most of them, but I'm struggling a bit with these two - RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,QSA,L] RewriteRule ...
5
votes
2answers
3k views

nginx proxy_pass based on whether request method is POST, PUT or DELETE

I have two iKaaro instances running on port 8080 and 9080, where the 9080 instance is Read only. I am unsure how to use nginx for example if the request method is POST, PUT, DELETE then send to write ...
5
votes
2answers
213 views

Webapp technology questions and advices

I decided to write a long introduction in order to give you a better idea of what I'm trying to achieve. This will be my first real... commercialy aimed application. Disclaimer: Even though I've been ...

1 3 4 5 6 7 98