मेरे पास यह nginx सर्वर AWS पर चल रहा है और यह तब तक सब ठीक काम कर रहा था जब हाल ही में कुछ उपयोगकर्ताओं ने वेबसाइट के खुलने की शिकायत करना शुरू कर दिया जब तक कि उन्होंने इसे एक्सेस करने के लिए कुछ 10 प्रयास नहीं किए।
मैं कभी भी इस मुद्दे को अपनी तरफ से रद्द नहीं कर पाया। मैं Google के dns यानी 8.8.8.8 का उपयोग कर रहा हूं और जब मैंने उपयोगकर्ताओं में से किसी एक के लिए समान बदला, तो साइट ठीक काम कर रही थी। अब यह कारण हो सकता है या यह केवल एक संयोग भी हो सकता है।
मुझे यह त्रुटि लॉग में मिली -
2014/05/29 13:46:15 [info] 6940#0: *150649 client timed out (110: Connection timed out) while waiting for request, client: xx.xxx.xxx.xx, server: 0.0.0.0:80
2014/05/29 13:46:20 [info] 6940#0: *150670 client closed connection while waiting for request, client: xx.xxx.xxx.xx, server: 0.0.0.0:80
2014/05/29 13:46:20 [info] 6940#0: *150653 client closed connection while waiting for request, client: xx.xxx.xxx.xx, server: 0.0.0.0:80
2014/05/29 13:46:20 [info] 6940#0: *150652 client closed connection while waiting for request, client: xx.xxx.xxx.xx, server: 0.0.0.0:80
और कुछ जगह यह भी -
2014/05/29 13:46:53 [info] 6940#0: *150665 client closed connection while waiting for request, client: xx.xxx.xxx.xx, server: 0.0.0.0:80
2014/05/29 13:46:53 [info] 6940#0: *150660 client xx.xxx.xxx.xx closed keepalive connection
नोट- clien't IP के लिए xx.xxx.xxx.xx रखा है
यहाँ nginx config है -
server {
listen 80;
server_name somedomain.com www.somedomain.com;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
root /var/www/somedomain/current/app/webroot;
index index.php index.html index.htm;
... couple of location rules ...
}
मेरे द्वारा किसी भी सहायता की वास्तव में सराहना की जाएगी।
धन्यवाद