nginx 基于名称的多个虚拟主机不起作用

nginx 基于名称的多个虚拟主机不起作用

我有一个 nginx docker 正在运行,它使用虚拟主机反向代理到同一个 docker 桥中的 django 设置(这有效)。我正在尝试添加第二个虚拟主机,它将从 nginx 本身提供静态 html 内容。我试图按照网络上的示例操作,但无法让它工作。希望有人能发现我做错了什么。

在以下文件中,我已更改 DNS 名称以实现匿名。abcde.wxyz.org 和 abcd.defgh.org 都解析为同一 IP,名称解析工作正常。(a) 访问https://abcd.defgh.org/(即代理)工作正常。(b)访问http://abcde.wxyz.org/(静态网页),我收到 ERR_CONNECTION_REFUSED (c) 访问https://abcde.wxyz.org/让我想到(a),这也不应该发生。

我究竟做错了什么?

这是我的 /etc/nginx/nginx.conf 文件:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;
events {
    worker_connections  1024;
}
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;

    keepalive_timeout  65;

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

在 /etc/nginx/conf.d/ 目录中有一个名为“django.conf”的文件,如下所示:

server {
  listen 80;
  server_name abcd.defgh.org;
  access_log  /var/www/logs/abcd.defgh.org.log;
  error_log  /var/www/logs/abcd.defgh.org.log error;
  root /var/www/abcd.defgh.org/public_html;
  index index.html index.htm;

  location / {
    try_files $uri $uri/ /index.html;
  }
}


server {
  listen 80;
  listen 443 ssl http2;
  listen [::]:443 ssl http2;
  server_name abcde.wxyz.org;

  ssl_certificate /etc/ssl/certs/localhost.crt;
  ssl_certificate_key /etc/ssl/private/localhost.key;

  ssl_protocols TLSv1.2 TLSv1.1 TLSv1;


  location / {
    proxy_pass http://web:8000;
    }
}

'web' 由 docker 名称服务解析,并且正常工作。

我似乎无法从 nginx docker 获取访问日志或错误日志,以便进一步排除故障。

答案1

误报。结果发现是 docker 环境问题。docker 设置时只转发了 443 端口,没有转发 80 端口。

相关内容