Welcome! Log In Create A New Profile

Advanced

Re: nginx dies after a few minutes (unicorn)

August 05, 2010 06:20AM
On Thu, Aug 05, 2010 at 04:57:24AM +0200, Stanley Sh wrote:

> I am running unicorn behind nginx to host Rails 3
>
> Both nginx and unicorn run flawlessly when first started but nginx dies
> inexplicably about 5-10 minutes later. Unicorn, however, stays up and is
> still accessible through its own port.

What do you mean by "dies" ?
Are you able to download any static file from nginx ?

> Here is my nginx configuration pertaining to this application:
>
>
> upstream unicorn {
> server unix:/tmp/.sock fail_timeout=0;
> }
>
> server {
> server_name example.com;
> root /www/example.com/current/public;
>
> keepalive_timeout 5;
>
> location / {
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_set_header Host $host;
> proxy_redirect off;
> if (!-f $request_filename) {
> proxy_pass http://unicorn;
> break;
> }
> }
> }

By the way, it's better to use this configuration:

location / {
try_files $uri $uri/ @unicorn;
}

location @unicorn {
proxy_pass http://unicorn;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
}


--
Igor Sysoev
http://sysoev.ru/en/

_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

nginx dies after a few minutes (unicorn)

Stanley Sh August 04, 2010 11:06PM

Re: nginx dies after a few minutes (unicorn)

Igor Sysoev August 05, 2010 06:20AM

Re: nginx dies after a few minutes (unicorn)

Stanley Sh August 05, 2010 05:56PM

Re: nginx dies after a few minutes (unicorn)

Igor Sysoev August 06, 2010 02:54AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 314
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 500 on July 15, 2024
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready