Nginx reverse proxy 502 bad gateway error

Hello,

I am getting 502 bad gateway error while trying to setup nginx server as
reverse proxy server with caching enabled. Both servers are on seperate
machines, another server having apache web server.

Given below are my config files, please help me.

nginx.conf

user www www;

worker_processes 1;

error_log /home/wwwlogs/nginx_error.log crit;

pid /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by
this
process.
worker_rlimit_nofile 51200;

events
{
use epoll;
worker_connections 51200;
}

http
{
include mime.types;
default_type application/octet-stream;

            server_names_hash_bucket_size 128;
            client_header_buffer_size 32k;
            large_client_header_buffers 4 32k;
            client_max_body_size 50m;

            sendfile on;
            tcp_nopush     on;

            keepalive_timeout 60;

            tcp_nodelay on;

            fastcgi_connect_timeout 300;
            fastcgi_send_timeout 300;
            fastcgi_read_timeout 300;
        fastcgi_read_timeout 300;
            fastcgi_buffer_size 32k;
            fastcgi_buffers 8 16k;
            fastcgi_busy_buffers_size 64k;
            fastcgi_temp_file_write_size 256k;

            gzip on;
            gzip_min_length  1k;
            gzip_buffers     4 16k;
            gzip_http_version 1.0;
            gzip_comp_level 2;
            gzip_types       text/plain application/x-javascript

text/css application/xml;
gzip_vary on;

            #limit_zone  crawler  $binary_remote_addr  10m;

            #log format
            log_format  access  '$remote_addr - $remote_user

[$time_local] “$request” ’
'$status $body_bytes_sent “$http_referer” ’
‘“$http_user_agent” $http_x_forwarded_for’;

include vhost/*.conf;
}


www.example.com.conf

proxy_cache_path /usr/local/nginx/proxy levels=1:2 keys_zone=one:15m
inactive=7d max_size=1000m;

server {
listen 80;
server_name www.example.com;
access_log off;
error_log off;
location / {
proxy_pass http://1.2.3.4:80;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_cache one;
proxy_max_temp_file_size 0;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
}
server
{ listen 80;
server_name example.com;
rewrite ^/(.*) http://www.example.com/$1 permanent;
}

Please note www.example.com is replaced with actual domain, and ip
1.2.3.4
is replaced with actual ip address in the original configuration file.

Additional Information :

I have done the lnmp installation using the script available here :
http://www.ruchirablog.com/lnmp-v08-complete-nginx-auto-installer/

Posted at Nginx Forum:

Hello!

On Fri, Apr 12, 2013 at 12:23:53PM -0400, cruise wrote:

user www www;

worker_processes 1;

error_log /home/wwwlogs/nginx_error.log crit;

First of all, try the following:

  1. Configure you error log at some sensible level, e.g. “notice”.

  2. Reproduce the issue and look into error log.

If after the above steps you still won’t be able to resolve the
issue yourself, try asking here again with error log information
included.


Maxim D.
http://nginx.org/en/donation.html

Log file details.

2013/04/13 00:03:29 [alert] 10931#0: open socket #13 left in connection
3
2013/04/13 00:03:29 [alert] 10931#0: open socket #22 left in connection
14
2013/04/13 00:03:29 [alert] 10931#0: open socket #23 left in connection
15
2013/04/13 00:03:29 [alert] 10931#0: open socket #27 left in connection
19
2013/04/13 00:03:29 [alert] 10931#0: aborting
2013/04/13 01:07:53 [notice] 11471#0: using the “epoll” event method
2013/04/13 01:07:53 [notice] 11471#0: start worker processes
2013/04/13 01:07:53 [notice] 11471#0: start worker process 12080
2013/04/13 01:07:53 [notice] 11471#0: start cache manager process 12081
2013/04/13 01:07:53 [notice] 11471#0: signal 17 (SIGCHLD) received
2013/04/13 01:07:53 [notice] 11471#0: cache manager process 11474 exited
with co de 0
2013/04/13 01:07:53 [notice] 11471#0: signal 29 (SIGIO) received
2013/04/13 01:07:56 [notice] 11471#0: signal 17 (SIGCHLD) received
2013/04/13 01:07:56 [notice] 11471#0: worker process 11473 exited with
code
0
2013/04/13 01:07:56 [notice] 11471#0: signal 29 (SIGIO) received
2013/04/13 01:08:01 [notice] 11471#0: signal 15 (SIGTERM) received,
exiting
2013/04/13 01:08:01 [notice] 12081#0: exiting
2013/04/13 01:08:01 [notice] 12080#0: exiting
2013/04/13 01:08:01 [notice] 12080#0: exit
2013/04/13 01:08:01 [notice] 11471#0: signal 17 (SIGCHLD) received
2013/04/13 01:08:01 [notice] 11471#0: cache manager process 12081 exited
with co de 0
2013/04/13 01:08:01 [notice] 11471#0: signal 29 (SIGIO) received
2013/04/13 01:08:01 [notice] 11471#0: signal 17 (SIGCHLD) received
2013/04/13 01:08:01 [notice] 11471#0: worker process 12080 exited with
code
0
2013/04/13 01:08:01 [notice] 11471#0: exit
2013/04/13 01:08:06 [notice] 12128#0: using the “epoll” event method
2013/04/13 01:08:06 [notice] 12128#0: nginx/1.0.15
2013/04/13 01:08:06 [notice] 12128#0: built by gcc 4.4.6 20120305 (Red
Hat
4.4.6 -4) (GCC)
2013/04/13 01:08:06 [notice] 12128#0: OS: Linux 2.6.32-042stab055.10
2013/04/13 01:08:06 [notice] 12128#0: getrlimit(RLIMIT_NOFILE):
65535:65535
2013/04/13 01:08:06 [notice] 12129#0: start worker processes
2013/04/13 01:08:06 [notice] 12129#0: start worker process 12131
2013/04/13 01:08:06 [notice] 12129#0: start cache manager process 12132
2013/04/13 01:08:06 [notice] 12129#0: start cache loader process 12133
2013/04/13 01:09:06 [notice] 12133#0: http file cache:
/usr/local/nginx/proxy 0. 000M, bsize: 4096
2013/04/13 01:09:06 [notice] 12129#0: signal 17 (SIGCHLD) received
2013/04/13 01:09:06 [notice] 12129#0: cache loader process 12133 exited
with
cod e 0
2013/04/13 01:09:06 [notice] 12129#0: signal 29 (SIGIO) received

Posted at Nginx Forum:

Please help me too.

Posted at Nginx Forum:

2013/04/13 01:09:06 [notice] 12129#0: signal 29 (SIGIO) received
2013/04/13 01:18:53 [error] 12131#0: *19 open()
“/home/wwwroot/tag/psd-to-html5-volusion-themes” failed (2: No such file
or
directory), client: 66.249.73.10, server: www.surilasafar.com, request:
“GET
/tag/psd-to-html5-volusion-themes HTTP/1.1”, host:
psd-html5.devangsolanki.com
2013/04/13 01:20:12 [error] 12131#0: *26 open()
“/home/wwwroot/favicon.ico”
failed (2: No such file or directory), client: 66.249.84.70, server:
www.surilasafar.com, request: “GET /favicon.ico HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 01:24:46 [error] 12131#0: *42 open() “/home/wwwroot/2012/12”
failed (2: No such file or directory), client: 66.249.73.106, server:
www.surilasafar.com, request: “GET /2012/12 HTTP/1.1”, host:
volusion.devangsolanki.com
2013/04/13 01:26:29 [error] 12131#0: *47
“/home/wwwroot/tag/html5-website-templates/feed/index.html” is not found
(2:
No such file or directory), client: 66.249.75.36, server:
www.surilasafar.com, request: “GET /tag/html5-website-templates/feed/
HTTP/1.1”, host: “html5.devangsolanki.com
2013/04/13 01:26:38 [error] 12131#0: *48 open()
“/home/wwwroot/tag/prestashop-free-modules/feed” failed (2: No such file
or
directory), client: 66.249.74.70, server: www.surilasafar.com, request:
“GET
/tag/prestashop-free-modules/feed HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 01:36:29 [error] 12131#0: *59 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 60.36.84.1, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.0”, host:
psd-html5.devangsolanki.com
2013/04/13 01:40:49 [error] 12131#0: *76 open()
“/home/wwwroot/tag/volusion-template-development-2” failed (2: No such
file
or directory), client: 66.249.73.106, server: www.surilasafar.com,
request:
“GET /tag/volusion-template-development-2 HTTP/1.1”, host:
volusion.devangsolanki.com
2013/04/13 01:49:39 [error] 12131#0: *82 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 66.249.75.207, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
design.devangsolanki.com
2013/04/13 01:49:39 [error] 12131#0: *82
“/home/wwwroot/2013/02/22/hello-world/index.html” is not found (2: No
such
file or directory), client: 66.249.75.207, server: www.surilasafar.com,
request: “GET /2013/02/22/hello-world/ HTTP/1.1”, host:
design.devangsolanki.com
2013/04/13 01:52:06 [error] 12131#0: *83 open()
“/home/wwwroot/tag/html5-website-developer/feed” failed (2: No such file
or
directory), client: 141.8.147.4, server: www.surilasafar.com, request:
“GET
/tag/html5-website-developer/feed HTTP/1.1”, host:
hire-html5-developer.devangsolanki.com
2013/04/13 01:53:08 [error] 12131#0: *87 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 65.55.213.243, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
volusion.devangsolanki.com
2013/04/13 01:53:08 [error] 12131#0: *88 open()
“/home/wwwroot/volusion-sitemap.xml” failed (2: No such file or
directory),
client: 65.55.213.243, server: www.surilasafar.com, request: “GET
/volusion-sitemap.xml HTTP/1.1”, host: “volusion.devangsolanki.com
2013/04/13 01:55:43 [error] 12131#0: *95 open()
“/home/wwwroot/tag/prestashop-mobile-theme/feed” failed (2: No such file
or
directory), client: 66.249.74.70, server: www.surilasafar.com, request:
“GET
/tag/prestashop-mobile-theme/feed HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 01:58:13 [error] 12131#0: *96
“/home/wwwroot/tag/html5-mobile-development/feed/index.html” is not
found
(2: No such file or directory), client: 66.249.75.36, server:
www.surilasafar.com, request: “GET /tag/html5-mobile-development/feed/
HTTP/1.1”, host: “html5.devangsolanki.com
2013/04/13 02:06:30 [error] 12131#0: *105 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 65.55.215.46, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
portfolio.devangsolanki.com
2013/04/13 02:06:30 [error] 12131#0: *106 open()
“/home/wwwroot/wp-content/plugins/wp-postratings/images/stars/rating_on.gif”
failed (2: No such file or directory), client: 65.55.215.46, server:
www.surilasafar.com, request: “GET
/wp-content/plugins/wp-postratings/images/stars/rating_on.gif HTTP/1.1”,
host: “portfolio.devangsolanki.com
2013/04/13 02:09:27 [error] 12131#0: *119 open()
“/home/wwwroot/classified-listings.html” failed (2: No such file or
directory), client: 59.58.157.243, server: www.surilasafar.com, request:
“GET /classified-listings.html HTTP/1.1”, host:
classifieds.devangsolanki.com
2013/04/13 02:09:27 [error] 12131#0: *119
“/home/wwwroot/classified-listings.html/trackback/index.html” is not
found
(2: No such file or directory), client: 59.58.157.243, server:
www.surilasafar.com, request: “POST /classified-listings.html/trackback/
HTTP/1.1”, host: “classifieds.devangsolanki.com”, referrer:
http://classifieds.devangsolanki.com/classified-listings.html
2013/04/13 02:12:14 [error] 12131#0: *122 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 66.249.73.161, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
directory.devangsolanki.com
2013/04/13 02:20:06 [error] 12131#0: *155
“/home/wwwroot/tag/html5-templates-for-free/feed/index.html” is not
found
(2: No such file or directory), client: 66.249.75.36, server:
www.surilasafar.com, request: “GET /tag/html5-templates-for-free/feed/
HTTP/1.1”, host: “html5.devangsolanki.com
2013/04/13 02:21:59 [error] 12131#0: *156 open()
“/home/wwwroot/html5-psd-xhtml-html-css3-services.html” failed (2: No
such
file or directory), client: 46.105.52.235, server: www.surilasafar.com,
request: “GET /html5-psd-xhtml-html-css3-services.html HTTP/1.0”, host:
psd-html5.devangsolanki.com”, referrer:
http://psd-html5.devangsolanki.com/html5-psd-xhtml-html-css3-services.html
2013/04/13 02:23:47 [error] 12131#0: *173
“/home/wwwroot/2013/02/22/hello-world/index.html” is not found (2: No
such
file or directory), client: 66.249.75.44, server: www.surilasafar.com,
request: “GET /2013/02/22/hello-world/ HTTP/1.1”, host:
dotnetnuke.devangsolanki.com
2013/04/13 02:26:48 [error] 12131#0: *181 open()
“/home/wwwroot/tag/prestashop-search-module/feed” failed (2: No such
file or
directory), client: 66.249.74.70, server: www.surilasafar.com, request:
“GET
/tag/prestashop-search-module/feed HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 02:31:55 [error] 12131#0: *187 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 199.30.16.32, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
ns1.devangsolanki.com
2013/04/13 02:31:55 [error] 12131#0: *188 open()
“/home/wwwroot/wp-content/uploads/sites/11/2013/02/europe-travel-consultants-dnn-design-development-germany-320x200.jpg”
failed (2: No such file or directory), client: 199.30.16.32, server:
www.surilasafar.com, request: “GET
/wp-content/uploads/sites/11/2013/02/europe-travel-consultants-dnn-design-development-germany-320x200.jpg
HTTP/1.1”, host: “ns1.devangsolanki.com
2013/04/13 02:34:01 [error] 12131#0: *201 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 66.249.73.234, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
hire-prestashop-developer.devangsolanki.com
2013/04/13 02:34:01 [error] 12131#0: *201 open()
“/home/wwwroot/author/devangsolanki” failed (2: No such file or
directory),
client: 66.249.73.234, server: www.surilasafar.com, request: “GET
/author/devangsolanki HTTP/1.1”, host:
hire-prestashop-developer.devangsolanki.com
2013/04/13 02:35:30 [error] 12131#0: *206 open()
“/home/wwwroot/volusion-search-engine-optimization-seo-experts.html+“Notify+me+of+new+posts+by+email”+generate+online+form+html&ct=clnk”
failed (2: No such file or directory), client: 69.175.78.132, server:
www.surilasafar.com, request: “GET
/volusion-search-engine-optimization-seo-experts.html+“Notify+me+of+new+posts+by+email”+generate+online+form+html&ct=clnk
HTTP/1.0”, host: “volusion.devangsolanki.com”, referrer:
http://volusion.devangsolanki.com/
2013/04/13 02:40:18 [error] 12131#0: *218 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 66.249.75.195, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
ns2.devangsolanki.com
2013/04/13 02:40:18 [error] 12131#0: *218 open()
“/home/wwwroot/wp-content/themes/akita/framework/frontend/assets/images/shortcodes/icons/clock.png”
failed (2: No such file or directory), client: 66.249.75.195, server:
www.surilasafar.com, request: “GET
/wp-content/themes/akita/framework/frontend/assets/images/shortcodes/icons/clock.png
HTTP/1.1”, host: “ns2.devangsolanki.com
2013/04/13 02:42:47 [error] 12131#0: *237 open()
“/home/wwwroot/wp-content/plugins/wordpress-23-related-posts-plugin/static/thumbs/20.jpg”
failed (2: No such file or directory), client: 66.249.75.195, server:
www.surilasafar.com, request: “GET
/wp-content/plugins/wordpress-23-related-posts-plugin/static/thumbs/20.jpg
HTTP/1.1”, host: “ns2.devangsolanki.com
2013/04/13 02:43:47 [error] 12131#0: *244 open()
“/home/wwwroot/dotnetnuke-html5-responsive-skins-design-development.html”
failed (2: No such file or directory), client: 70.194.131.69, server:
www.surilasafar.com, request: “GET
/dotnetnuke-html5-responsive-skins-design-development.html HTTP/1.1”,
host:
portfolio.devangsolanki.com
2013/04/13 02:48:59 [error] 12131#0: *254
“/home/wwwroot/tag/html5-responsive-template/feed/index.html” is not
found
(2: No such file or directory), client: 66.249.75.36, server:
www.surilasafar.com, request: “GET /tag/html5-responsive-template/feed/
HTTP/1.1”, host: “html5.devangsolanki.com
2013/04/13 02:49:10 [notice] 12129#0: signal 1 (SIGHUP) received,
reconfiguring
2013/04/13 02:49:10 [notice] 12129#0: reconfiguring
2013/04/13 02:49:10 [notice] 12129#0: using the “epoll” event method
2013/04/13 02:49:10 [notice] 12129#0: start worker processes
2013/04/13 02:49:10 [notice] 12129#0: start worker process 12788
2013/04/13 02:49:10 [notice] 12129#0: start cache manager process 12789
2013/04/13 02:49:10 [notice] 12131#0: gracefully shutting down
2013/04/13 02:49:10 [notice] 12131#0: exiting
2013/04/13 02:49:10 [notice] 12131#0: exit
2013/04/13 02:49:10 [notice] 12132#0: exiting
2013/04/13 02:49:10 [notice] 12129#0: signal 17 (SIGCHLD) received
2013/04/13 02:49:10 [notice] 12129#0: cache manager process 12132 exited
with code 0
2013/04/13 02:49:10 [notice] 12129#0: signal 29 (SIGIO) received
2013/04/13 02:49:10 [notice] 12129#0: signal 17 (SIGCHLD) received
2013/04/13 02:49:10 [notice] 12129#0: worker process 12131 exited with
code
0
2013/04/13 02:49:10 [notice] 12129#0: signal 29 (SIGIO) received
2013/04/13 02:49:17 [notice] 12129#0: signal 15 (SIGTERM) received,
exiting
2013/04/13 02:49:17 [notice] 12789#0: exiting
2013/04/13 02:49:17 [notice] 12788#0: exiting
2013/04/13 02:49:17 [notice] 12788#0: exit
2013/04/13 02:49:17 [notice] 12129#0: signal 17 (SIGCHLD) received
2013/04/13 02:49:17 [notice] 12129#0: worker process 12788 exited with
code
0
2013/04/13 02:49:17 [notice] 12129#0: cache manager process 12789 exited
with code 0
2013/04/13 02:49:17 [notice] 12129#0: signal 14 (SIGALRM) received
2013/04/13 02:49:17 [notice] 12129#0: exit
2013/04/13 02:49:21 [notice] 12832#0: using the “epoll” event method
2013/04/13 02:49:21 [notice] 12832#0: nginx/1.0.15
2013/04/13 02:49:21 [notice] 12832#0: built by gcc 4.4.6 20120305 (Red
Hat
4.4.6-4) (GCC)
2013/04/13 02:49:21 [notice] 12832#0: OS: Linux 2.6.32-042stab055.10
2013/04/13 02:49:21 [notice] 12832#0: getrlimit(RLIMIT_NOFILE):
65535:65535
2013/04/13 02:49:21 [notice] 12833#0: start worker processes
2013/04/13 02:49:21 [notice] 12833#0: start worker process 12835
2013/04/13 02:49:21 [notice] 12833#0: start cache manager process 12836
2013/04/13 02:49:21 [notice] 12833#0: start cache loader process 12837
2013/04/13 02:50:21 [notice] 12837#0: http file cache:
/usr/local/nginx/proxy 0.000M, bsize: 4096
2013/04/13 02:50:21 [notice] 12833#0: signal 17 (SIGCHLD) received
2013/04/13 02:50:21 [notice] 12833#0: cache loader process 12837 exited
with
code 0
2013/04/13 02:50:21 [notice] 12833#0: signal 29 (SIGIO) received
2013/04/13 02:50:39 [error] 12835#0: *31 open()
“/home/wwwroot/tag/website-design-companies/feed” failed (2: No such
file or
directory), client: 66.249.74.70, server: www.surilasafar.com, request:
“GET
/tag/website-design-companies/feed HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 02:53:39 [error] 12835#0: *43 open()
“/home/wwwroot/classified-listings.html” failed (2: No such file or
directory), client: 60.169.77.110, server: www.surilasafar.com, request:
“GET /classified-listings.html HTTP/1.1”, host:
classifieds.devangsolanki.com
2013/04/13 02:53:40 [error] 12835#0: *43
“/home/wwwroot/classified-listings.html/trackback/index.html” is not
found
(2: No such file or directory), client: 60.169.77.110, server:
www.surilasafar.com, request: “POST /classified-listings.html/trackback/
HTTP/1.1”, host: “classifieds.devangsolanki.com”, referrer:
http://classifieds.devangsolanki.com/classified-listings.html
2013/04/13 02:54:47 [notice] 12833#0: signal 1 (SIGHUP) received,
reconfiguring
2013/04/13 02:54:47 [notice] 12833#0: reconfiguring
2013/04/13 02:54:47 [notice] 12833#0: using the “epoll” event method
2013/04/13 02:54:47 [notice] 12833#0: start worker processes
2013/04/13 02:54:47 [notice] 12833#0: start worker process 13046
2013/04/13 02:54:47 [notice] 12833#0: start cache manager process 13047
2013/04/13 02:54:47 [notice] 12836#0: exiting
2013/04/13 02:54:47 [notice] 12835#0: gracefully shutting down
2013/04/13 02:54:47 [notice] 12833#0: signal 17 (SIGCHLD) received
2013/04/13 02:54:47 [notice] 12833#0: cache manager process 12836 exited
with code 0
2013/04/13 02:54:47 [notice] 12833#0: signal 29 (SIGIO) received
2013/04/13 02:54:49 [error] 13046#0: *47 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 65.55.213.243, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
website-design.devangsolanki.com
2013/04/13 02:54:50 [error] 13046#0: *48 open()
“/home/wwwroot/sitemap.xml”
failed (2: No such file or directory), client: 65.55.213.243, server:
www.surilasafar.com, request: “GET /sitemap.xml HTTP/1.1”, host:
website-design.devangsolanki.com
2013/04/13 02:54:54 [notice] 12833#0: signal 15 (SIGTERM) received,
exiting
2013/04/13 02:54:54 [notice] 13046#0: exiting
2013/04/13 02:54:54 [notice] 13047#0: exiting
2013/04/13 02:54:54 [notice] 13046#0: exit
2013/04/13 02:54:54 [notice] 12833#0: signal 17 (SIGCHLD) received
2013/04/13 02:54:54 [notice] 12833#0: cache manager process 13047 exited
with code 0
2013/04/13 02:54:54 [notice] 12833#0: signal 29 (SIGIO) received
2013/04/13 02:54:54 [notice] 12833#0: signal 17 (SIGCHLD) received
2013/04/13 02:54:54 [notice] 12833#0: worker process 13046 exited with
code
0
2013/04/13 02:54:54 [notice] 12833#0: signal 29 (SIGIO) received
2013/04/13 02:54:54 [notice] 12835#0: exiting
2013/04/13 02:54:54 [alert] 12835#0: open socket #13 left in connection
5
2013/04/13 02:54:54 [alert] 12835#0: open socket #11 left in connection
8
2013/04/13 02:54:54 [alert] 12835#0: open socket #12 left in connection
10
2013/04/13 02:54:54 [alert] 12835#0: aborting
2013/04/13 02:54:54 [notice] 12835#0: exit
2013/04/13 02:54:54 [notice] 12833#0: signal 17 (SIGCHLD) received
2013/04/13 02:54:54 [notice] 12833#0: worker process 12835 exited with
code
0
2013/04/13 02:54:54 [notice] 12833#0: exit
2013/04/13 02:54:59 [notice] 13097#0: using the “epoll” event method
2013/04/13 02:54:59 [notice] 13097#0: nginx/1.0.15
2013/04/13 02:54:59 [notice] 13097#0: built by gcc 4.4.6 20120305 (Red
Hat
4.4.6-4) (GCC)
2013/04/13 02:54:59 [notice] 13097#0: OS: Linux 2.6.32-042stab055.10
2013/04/13 02:54:59 [notice] 13097#0: getrlimit(RLIMIT_NOFILE):
65535:65535
2013/04/13 02:54:59 [notice] 13098#0: start worker processes
2013/04/13 02:54:59 [notice] 13098#0: start worker process 13099
2013/04/13 02:54:59 [notice] 13098#0: start cache manager process 13101
2013/04/13 02:54:59 [notice] 13098#0: start cache loader process 13102
2013/04/13 02:55:59 [notice] 13102#0: http file cache:
/usr/local/nginx/proxy 0.000M, bsize: 4096
2013/04/13 02:55:59 [notice] 13098#0: signal 17 (SIGCHLD) received
2013/04/13 02:55:59 [notice] 13098#0: cache loader process 13102 exited
with
code 0
2013/04/13 02:55:59 [notice] 13098#0: signal 29 (SIGIO) received
2013/04/13 02:56:31 [error] 13099#0: *22 open()
“/home/wwwroot/robots.txt”
failed (2: No such file or directory), client: 157.55.32.162, server:
www.surilasafar.com, request: “GET /robots.txt HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 02:58:08 [error] 13099#0: *27
“/home/wwwroot/sample-page/index.html” is not found (2: No such file or
directory), client: 66.249.75.181, server: www.surilasafar.com, request:
“GET /sample-page/ HTTP/1.1”, host: “dnn.devangsolanki.com
2013/04/13 03:00:16 [error] 13099#0: *35 open() “/home/wwwroot/feed”
failed
(2: No such file or directory), client: 157.55.32.162, server:
www.surilasafar.com, request: “GET /feed HTTP/1.1”, host:
prestashop-development.devangsolanki.com
2013/04/13 03:01:56 [error] 13099#0: *39 open()
“/home/wwwroot/tag/developer/feed” failed (2: No such file or
directory),
client: 141.8.147.4, server: www.surilasafar.com, request: “GET
/tag/developer/feed HTTP/1.1”, host:
hire-html5-developer.devangsolanki.com
2013/04/13 03:02:58 [notice] 13098#0: signal 1 (SIGHUP) received,
reconfiguring
2013/04/13 03:02:58 [notice] 13098#0: reconfiguring
2013/04/13 03:02:58 [notice] 13098#0: using the “epoll” event method
2013/04/13 03:02:58 [notice] 13098#0: start worker processes
2013/04/13 03:02:58 [notice] 13098#0: start worker process 13320
2013/04/13 03:02:58 [notice] 13098#0: start cache manager process 13321
2013/04/13 03:02:58 [notice] 13101#0: exiting
2013/04/13 03:02:58 [notice] 13099#0: gracefully shutting down
2013/04/13 03:02:58 [notice] 13099#0: exiting
2013/04/13 03:02:58 [notice] 13099#0: exit
2013/04/13 03:02:58 [notice] 13098#0: signal 17 (SIGCHLD) received
2013/04/13 03:02:58 [notice] 13098#0: worker process 13099 exited with
code
0
2013/04/13 03:02:58 [notice] 13098#0: cache manager process 13101 exited
with code 0
2013/04/13 03:02:58 [notice] 13098#0: signal 29 (SIGIO) received
2013/04/13 03:02:58 [notice] 13098#0: signal 17 (SIGCHLD) received
2013/04/13 03:03:05 [notice] 13098#0: signal 15 (SIGTERM) received,
exiting
2013/04/13 03:03:05 [notice] 13320#0: exiting
2013/04/13 03:03:05 [notice] 13321#0: exiting
2013/04/13 03:03:05 [notice] 13320#0: exit
2013/04/13 03:03:05 [notice] 13098#0: signal 17 (SIGCHLD) received
2013/04/13 03:03:05 [notice] 13098#0: worker process 13320 exited with
code
0
2013/04/13 03:03:05 [notice] 13098#0: signal 29 (SIGIO) received
2013/04/13 03:03:05 [notice] 13098#0: signal 17 (SIGCHLD) received
2013/04/13 03:03:05 [notice] 13098#0: cache manager process 13321 exited
with code 0
2013/04/13 03:03:05 [notice] 13098#0: exit
2013/04/13 03:03:12 [notice] 13373#0: using the “epoll” event method
2013/04/13 03:03:12 [notice] 13373#0: nginx/1.0.15
2013/04/13 03:03:12 [notice] 13373#0: built by gcc 4.4.6 20120305 (Red
Hat
4.4.6-4) (GCC)
2013/04/13 03:03:12 [notice] 13373#0: OS: Linux 2.6.32-042stab055.10
2013/04/13 03:03:12 [notice] 13373#0: getrlimit(RLIMIT_NOFILE):
65535:65535
2013/04/13 03:03:12 [notice] 13374#0: start worker processes
2013/04/13 03:03:12 [notice] 13374#0: start worker process 13375
2013/04/13 03:03:12 [notice] 13374#0: start cache manager process 13377
2013/04/13 03:03:12 [notice] 13374#0: start cache loader process 13378
2013/04/13 03:04:07 [error] 13375#0: *13 open()
“/home/wwwroot/article/example-website-article-1” failed (2: No such
file or
directory), client: 173.232.20.190, server: www.surilasafar.com,
request:
“GET /article/example-website-article-1 HTTP/1.0”, host:
directory.devangsolanki.com”, referrer:
http://directory.devangsolanki.com/article/example-website-article-1
2013/04/13 03:04:12 [notice] 13378#0: http file cache:
/usr/local/nginx/proxy 0.000M, bsize: 4096
2013/04/13 03:04:12 [notice] 13374#0: signal 17 (SIGCHLD) received
2013/04/13 03:04:12 [notice] 13374#0: cache loader process 13378 exited
with
code 0
2013/04/13 03:04:12 [notice] 13374#0: signal 29 (SIGIO) received

Any help friends ???

Posted at Nginx Forum: