我是 nginx 的新手,我正在尝试设置 nginx 并将其用作我的 Web 服务器。
我现在面临的问题是,当我尝试访问 nginx 正在监听的 IP 或域名时,我收到“连接已超时”的消息。另一方面,如果我通过 ssh 连接到我的服务器,然后在同一个 IP 或域上执行 curl 或 wget,我会收到一条回复,其中包含它应该打印的内容。
基本上我可以在本地访问 nginx,但不能在全局访问。是否缺少任何权限,或者我应该在配置中使用除 nginx 之外的其他用户?
我尝试禁用 apache 服务器并运行 nginx 并监听所有 80 个请求,但同样的问题仍然存在
我的 nginx 设置如下:
#######################################################################
#
# This is the main Nginx configuration file.
#
# More information about the configuration options is available on
# * the English wiki - http://wiki.nginx.org/Main
# * the Russian documentation - http://sysoev.ru/nginx/
#
#######################################################################
#----------------------------------------------------------------------
# Main Module - directives that cover basic functionality
#
# http://wiki.nginx.org/NginxHttpMainModule
#
#----------------------------------------------------------------------
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
pid /var/run/nginx.pid;
#----------------------------------------------------------------------
# Events Module
#
# http://wiki.nginx.org/NginxHttpEventsModule
#
#----------------------------------------------------------------------
events {
worker_connections 1024;
#----------------------------------------------------------------------
# HTTP Core Module
#
# http://wiki.nginx.org/NginxHttpCoreModule
#
#----------------------------------------------------------------------
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
# Load config files from the /etc/nginx/conf.d directory
include /etc/nginx/conf.d/*.conf;
#
# The default server
#
server {
listen 69.162.77.106:80;
server_name warstarz.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /var/www/warstarz.com/html/;
index index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
}
答案1
您可能通过错误的 URL 访问它。
您在 NGINX 配置中引用的域名解析为
% dig warstarz.com +short
69.162.77.100
因此与您的服务器正在监听的 IP 地址不匹配。
NMAP 报告 Apache httpd 正在监听69.162.77.106:80
。
ps
使用和验证 NGINX 是否正在运行并监听正确的 IP 和端口netstat
。
答案2
在 fuero answer 的帮助下,我将正在使用的 IP 更改为另一个完全不同的 IP,让它开始工作,后来我发现我使用的 IP 不在我的 IP 表中,之后我添加了它,但现在已启动并运行。
谢谢