Nginx正在运行但未投放

时间:2019-02-15 00:30:30

标签: http nginx

我正在为到端口9001的所有HTTP通信配置代理传递。

Nginx.conf

#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;

#include /etc/nginx/modules.conf.d/*.conf;

events {
    worker_connections  1024;
}


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

    include /etc/nginx/sites-enabled/*;
    #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;
    #tcp_nodelay        on;

    #gzip  on;
    #gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    server_tokens off;

  #include /etc/nginx/conf.d/*.conf;
}

# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;

站点可用/ itdb:

server {
    listen 80;
    location / {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;
        proxy_pass         http://127.0.0.1:9001/;
    }
}
  • 我已验证sites-availablesites-enabled之间的符号链接完好无损,并且可以识别我的配置。
  • 我没有遇到任何错误,所有nginx-t tests都成功了,没有问题。
  • 我尝试过在代理传递上使用尾随/的情况。

我对寻找的东西迷失了。有什么东西贴在你身上吗?

2 个答案:

答案 0 :(得分:2)

您可以使用诸如lsof和/或fstat之类的方法来验证nginx是否正在运行并绑定到端口80:

在OpenBSD上为fstat

% fstat -u www | fgrep "*:"
www      nginx      21404   82* internet stream tcp 0xfffffe833a10d250 *:80
www      nginx      21404   83* internet6 stream tcp 0xfffffe833a10d480 *:80

在GNU / Linux上为lsof

% lsof -i -n | fgrep nginx
nginx    24854        root    6u  IPv4 61955031      0t0  TCP *:http (LISTEN)
nginx    25047      nobody    6u  IPv4 61955031      0t0  TCP *:http (LISTEN)

此外,对于https://serverfault.com/a/870709/110020,我建议您不要使用sites-available / sites-enabled,因为它可能还会给您带来额外的麻烦。

下一步是从运行nginx的框中运行curl -v,和/或让tcpdump尝试查找丢失数据包的位置-也许您有防火墙地点?您是否从nginx收到任何回复?也许您的后端不可用?

答案 1 :(得分:1)

这不是一个很大的答案,但是我的解决方案是全新安装OS&Nginx(即使它们已经是全新的)。我不确定发生了什么冲突,但是当我安装Nginx并复制完配置后,一切运行正常。