Initial rough commit to save the code before cleanup

This commit is contained in:
tanshu
2020-04-03 09:24:02 +05:30
commit e0e7b07468
29 changed files with 942 additions and 0 deletions

View File

@ -0,0 +1,16 @@
server {
listen 80;
server_name {{ http_host }};
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:9080;
}
}