NGINX 转发不工作

NGINX 转发不工作

我在 Centos 7 机器上安装了 nginx,想要将呼叫转发到端口 5601 上的 kibana 安装在。Kibana 已启动并运行,我可以通过在浏览器中的 url 附加端口来浏览它。

我的nginx.conf文件如下

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

events {
    worker_connections 1024;
}

http {
    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;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;
}

在 conf.d 目录中我放置了一个名为 default.conf 的文件,其内容如下:

server {
listen 80;
server_name 192.168.33.36;
#auth_basic "Restricted Access";
#auth_basic_user_file /etc/nginx/htpasswd.users;
location / {
    proxy_pass http://192.168.33.36:5601;
    #proxy_http_version 1.1;
    #proxy_set_header Upgrade $http_upgrade;
    #proxy_set_header Connection 'upgrade';
    #proxy_set_header Host $host;
    #proxy_cache_bypass $http_upgrade;
}
}

我是 nginx 新手,所以我肯定我做了一些愚蠢的事情,但我花了几个小时才弄清楚。有人知道哪里出了问题吗?

Nginix 正在运行,因为当我浏览端口 80 时,我得到了默认的 nginx 网页,但它没有转发到端口 5601

答案1

看来我可能没有在编辑之间正确地重启服务,因为我重启了盒子,它就开始工作了。但不确定为什么停止服务不起作用

相关内容