mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
sick to my stomach
This commit is contained in:
@@ -1,5 +1,3 @@
|
|||||||
# nginx-gunicorn-flask
|
|
||||||
|
|
||||||
FROM ubuntu:lunar
|
FROM ubuntu:lunar
|
||||||
LABEL maintainer="Andrew Simonson <asimonson1125@gmail.com>"
|
LABEL maintainer="Andrew Simonson <asimonson1125@gmail.com>"
|
||||||
|
|
||||||
@@ -7,7 +5,6 @@ ENV DEBIAN_FRONTEND noninteractive
|
|||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y python3-pip nginx gunicorn supervisor
|
RUN apt-get install -y python3-pip nginx gunicorn supervisor
|
||||||
# do we really need venv?
|
|
||||||
|
|
||||||
# Setup flask application
|
# Setup flask application
|
||||||
RUN mkdir -p /deploy/app
|
RUN mkdir -p /deploy/app
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
server {
|
server {
|
||||||
listen 8080;
|
listen 8080;
|
||||||
|
server_name _;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://localhost:5000/;
|
proxy_pass http://localhost:5000/;
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
}
|
}
|
||||||
|
path https://$server_name$request_uri;
|
||||||
|
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user