# flask-uwsgi-nginx **Repository Path**: thiswind/flask-uwsgi-nginx ## Basic Information - **Project Name**: flask-uwsgi-nginx - **Description**: Use Official Nginx Docker Image to build a uWSGI aware Flask Container - **Primary Language**: Shell - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flask-uwsgi-nginx Use Official Nginx Docker Image to build a uWSGI aware Flask Container ## Usage there must be a `web_app/` folder that contains the flask app. in `web_app` folder there must be: - requirements.txt - wsgi.py and you must import your flask application as `web_app` in wsgi.py: ```python import your_flask_app.app as web_app ``` see [flask-helloworld](https://github.com/thiswind/flask-helloworld)