Bifrost deployed using ansible

This commit is contained in:
tanshu
2020-05-04 17:04:09 +05:30
parent fc8a7795e6
commit 02cc1dafe5
7 changed files with 164 additions and 2 deletions

View File

@ -0,0 +1,19 @@
server {
listen 80;
server_name {{ http_host }};
# set max upload size
client_max_body_size 10G;
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
proxy_pass http://localhost:{{ host_port }};
}
}