Bifrost deployed using ansible
This commit is contained in:
19
bifrost/files/nginx.conf.j2
Normal file
19
bifrost/files/nginx.conf.j2
Normal 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 }};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user