10884-dockerify #6

Merged
mravi merged 14 commits from 10884-dockerify into master 2022-09-19 08:27:32 +00:00
Showing only changes of commit 3eb5ba12d9 - Show all commits

View file

@ -5,6 +5,8 @@ upstream gmba_django {
server {
listen 80;
client_max_body_size 256m;
location / {
proxy_pass http://gmba_django;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@ -12,9 +14,9 @@ server {
proxy_redirect off;
}
location /static/ {
alias /home/app/app/static/;
}
add_header Content-Security-Policy "frame-ancestors https://www.gmba.unibe.ch"
}