Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Nginx запущен, но не заходит на страницу
- To: nginx-ru@xxxxxxxxx
- Subject: Nginx запущен, но не заходит на страницу
- From: "smotritel" <nginx-forum@xxxxxxxx>
- Date: Thu, 13 Feb 2014 06:25:22 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=selenium.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=RFQe8O0cQSW7TnXo5WtqxUYEpwhGUhJGJwEZQLrJd60=; b=A5VsBuf6HrMf/kLAhxSB4JYKdRbZgOILLzYL5T9tiBb8Tsz75dOWTOMAYnhDunWao7kiP6AUcFbrtdHT5KACSzrqZbvU+8xgcpFYD+q9qS0N1CpOS9n+c6ARIx3xK3CN+JWOJquGPPevbf0xNoIGcTZgY75wsU2gA/ji1au1WbA=;
1) CentOS.
2) netstat
tcp 0 0 127.0.0.1:9000 0.0.0.0:*
LISTEN 2765/php-cgi
tcp 0 0 0.0.0.0:80 0.0.0.0:*
LISTEN 2958/nginx.conf
3)
server {
listen 80;
server_name test.ru www.test.ru;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
ssi on;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location /status {
stub_status on;
access_log off;
allow 192.168.163.1;
deny all;
}
4) захожу с IP 192.168.163.1 на 192.168.163.2. узел недоступен.
и даже на самом CentOS не заходит ни на 127.0.0.1, ни на 192.168.163.2.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,247501,247501#msg-247501
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|