首页 > 解决方案 > 每次请求都拒绝 DigitalOcean 液滴连接

问题描述

我设法将我的项目放入 droplet 并成功运行 docker-compose build。当我运行 docker-compose up 并尝试在我的域上使用 swagger 时,我在控制台中收到以下错误消息。

https-portal1_1 | 2020/03/03 22:52:13 [error] 291#291: *51 connect() failed (111: Connection refused) while connecting to upstream.

我必须补充一点,没有安装 Nginx,因为我是新手,需要一些帮助。

码头工人-compose.yml:

#docker-compose

version: '2'

services:
  app:
    build:
      context:  ./
      dockerfile: Dockerfile
  https-portal:
    image: steveltn/https-portal:1
    ports:
      - '80:80'
      - '443:443'
    links:
      - app
    restart: always
    environment:
      DOMAINS: 'ns2.wechoose.ro -> http://app:5000'
      STAGE: 'production'

Nginx 尚未安装,我尝试安装它,但它失败可能是因为我没有正确配置。

我之前使用的 Nginx 配置文件,失败是这样的:

Nginx:

server {

    server_name ns2.wechoose.ro  www.ns2.wechoose.ro;

   location / {
     proxy_pass http://localhost:5000;
     proxy_http_version 1.1;
     proxy_set_header Upgrade $http_upgrade;
     proxy_set_header Connection keep-alive;
     proxy_set_header Host $host;
     proxy_cache_bypass $http_upgrade;
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
     proxy_set_header X-Forwarded-Proto $scheme;
    }

标签: dockernginx.net-coredigital-ocean

解决方案


推荐阅读