我正在构建一个Rails应用程序,并且我正在设置应用程序以部署在Docker上,并将Nginx作为Web服务器。但是,我在为应用程序设置Nginx和Docker时遇到了问题。
当我运行docker-compose up
时,我总是得到这个错误:
/etc/nginx/conf.d/mailing_list.conf中的上游“应用程序:3000”中未找到主机
下面是我的docker-compose.yml
文件:
version: '3'
services:
app:
build:
context: .
dockerfile: ./docker/${RAILS_ENV}/Dockerfile
depends_on:
- database
ports:
- "3000:3000"
restart: always
volumes:
- .:/app
- gem-cache:/usr/local/bundle/gems
- node-modules:/app/node_modules
env_file:
- .env
environment:
RAILS_ENV: ${RAILS_ENV}
RACK_ENV: ${RACK_ENV}
database:
image: postgres:12.1
expose:
- "5432"
restart: always
env_file:
- .env
environment:
POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: ${DATABASE_NAME}
POSTGRES_HOST_AUTH_METHOD: ${DATABASE_HOST}
volumes:
- postgres-data:/var/lib/postgresql/data
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
nginx:
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
depends_on:
- app
ports:
- "8080:8080"
restart: always
volumes:
- .:/app
- nginx-config:/etc/nginx
- nginx-log:/var/log/nginx
volumes:
gem-cache:
nginx-config:
nginx-log:
node-modules:
postgres-data:
下面是我的nginx.conf
文件:
upstream app {
server app:3000;
}
server {
listen 8080;
listen [::]:8080;
root app/public;
index index.html index.htm;
server_name localhost;
location /app {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://app;
}
}
我试过很多解决办法,但似乎都不管用。
当我运行docker-compose up
时,我总是得到这个错误:
/etc/nginx/conf.d/mailing_list.conf中的上游“应用程序:3000”中未找到主机
1条答案
按热度按时间jhkqcmku1#
经过几个小时的研究和试验,我终于弄明白了这一点。
这些问题与我的
docker-compose.yml
和my_app.conf
(Nginx配置)文件中的错误配置有关。将
Dockerfile
用于Nginx
:docker-compose.yml
文件(包含我的app
、database
和Nginx
配置):Nginx
的my_app.conf
文件:Nginx
的nginx-entrypoint.sh
文件:1.我使用了
RAILS_ENV
、RACK_ENV
等变量,您可能不需要这些变量。1.此外,我的
Nginx
的WORKDIR
是/app
,因此在docker-compose.yml
文件中将其指定为Nginx
配置下的卷非常重要,就像我所做的那样。1.我将
Nginx
Map到主机上的端口8084
,您可以自由地将其Map到主机上的任何可用端口。就这样。
"我希望这能帮上忙"