python - Nginx 不为我的 Flask 网站提供服务

标签 python nginx web docker-compose

我正在关注这个example还有这个answer on stackoverflow我卡住了。
我在 digitalocean VPS 上运行这个例子。我的文件结构如下:

项目结构

      docker-compose.yml
      mainweb/
      nginx/
      README

docker-compose.yml

version: '2'
services:
    app:
        restart: always
        build: ./mainweb
        command: gunicorn -w 2 -b :5000 wsgi:app
        networks:
            - mainnet
        expose:
            - "5000"
        ports:
            - "5000:5000"
    nginx:
        restart: always
        build: ./nginx
        networks:
            - mainnet
        links:
            - app
        volumes:
            - /www/static
        expose:
            - 8080
        ports:
            - "8880:8080"
networks:
    mainnet:

主网/

  app.py
  Dockerfile
  requirements.txt
  templates/
  wsgi.py

主网/app.py
from flask import Flask, render_template

app=Flask(__name__)

@app.route('/')
def home()():
    return render_template('templates/home.html')


if __name__=="__main__":
    app.run(host="0.0.0.0", port=5000)

主网/Dockerfile

FROM python:3.5
MAINTAINER castellanprime

RUN mkdir /mainweb
COPY . /mainweb
WORKDIR /mainweb
RUN pip install -r requirements.txt

主网/模板/

   home.html

mainweb/templates/home.html

<!doctype html>
<html>
<head>
    <title> My website </title>
</head>
<body>
    <h1> I am here </h1>
</body>
</html>

主网/wsgi.py
from app import app

if __name__=="__main__":
    app.run()

nginx

   Dockerfile
   sites-enabled.conf
   static/

nginx/Docker文件

FROM nginx:1.13.1-alpine
MAINTAINER castellanprime
ADD sites-enabled.conf /etc/nginx/conf.d/sites-enabled.conf
ADD static/ /www/static/

nginx/sites-enabled.conf

server{

    listen 8080;
    server_name app;  #  Should I put my actual www.XXXXXX.XXXXX address here
    charset utf-8;

    location /static{
        alias /www/static/;
    }

    location / {
        proxy_pass http://app:5000;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X_Forwared-For $proxy_add_x_forwarded_for;
    }
}

nginx/静态

   css/
   js/

在我运行命令 docker-compose up -d 后,我从另一个系统上的另一个 Web 客户端检查 www.XXXXXX.com:8880 或 www.XXXXXX.com:8080。< br/> 我得到了标准的 nginx 网页。

如何将它重定向到 home.html?

最佳答案

退后一步,单独运行 Flask 应用程序。

您有一些语法错误。

from flask import Flask, render_template

app=Flask(__name__)

@app.route('/')
def home():   # Remove double brackets
    return render_template('home.html')  # The templates folder is already picked up

if __name__=="__main__":
    app.run(host="0.0.0.0", port=5000)

然后在 Docker 容器中,没有 gunicorn

FROM python:3.5

RUN mkdir /mainweb
COPY . /mainweb
WORKDIR /mainweb
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python3","/mainweb/app.py"]

然后运行它,看看它是否有效。

cd mainapp
docker build -t flask:test .
docker run --rm -p 5000:5000 flask:test

打开http://server:5000

然后仅使用该容器启动 docker-compose 并根据需要定义 nginx。

nginx/Docker文件

FROM nginx:1.13.1-alpine
ADD flask.conf /etc/nginx/conf.d/
EXPOSE 8080

nginx/flask.conf(我根据项目中的一个文件更改了它)

server {

    listen 8080;    # This is the port to EXPOSE in nginx container
    server_name app;  # You can change this, but not necessary
    charset utf-8;

    location ^~ /static/ {
        alias /usr/share/nginx/html/; 
    }

    location / {
        try_files $uri $uri/ @flask;
    }

    location @flask {
        proxy_pass http://app:5000;   # This is the port Flask container EXPOSE'd
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X_Forwared-For $proxy_add_x_forwarded_for;
    }
}

最后,撰写。你不想让你的站点同时暴露 5000 和 80(你不希望人们绕过 nginx),所以不要暴露 5000

version: '2'
services:
    app:
        restart: always
        build: ./mainweb
        networks:
            - mainnet
    nginx:
        restart: always
        build: ./nginx
        networks:
            - mainnet
        links:
            - app
        volumes:
            - ./mainweb/static:/usr/share/nginx/html
        ports:
            - "80:8080"
networks:
    mainnet:

关于python - Nginx 不为我的 Flask 网站提供服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44731773/

相关文章:

python - 如何使用 await 表达式?

java - 大型 XML 的高效解析器

PHP 与 gitlab 捆绑的 nginx 不工作

angular - 重新加载页面时出现 HTTP 错误 404

html - 无法在 html 中显示结构 slice

python - 在 SCO 5.0.5 上安装 python 2.5 需要什么

python - 从 dev : static files not resolving 中的子文件夹提供 django

javascript - 如何修复 nginx 上的 http 414 Request-URI Too Large 错误?

javascript - Jquery boxslider 无法在网站上运行

python - 尝试访问命令行变量时出现 Pytest KeyError