Revert accidental docker->master merge

This commit is contained in:
2022-02-04 14:24:31 +01:00
parent 746daf14f6
commit 49aba49406
9 changed files with 21 additions and 203 deletions

View File

@@ -1,4 +0,0 @@
FROM nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d

View File

@@ -1,20 +0,0 @@
upstream konova {
server konova:8000;
}
server {
listen 80;
location / {
proxy_pass http://konova;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_redirect off;
}
location /static/ {
alias /konova/static/;
}
}