added docker and reverseproxy

This commit is contained in:
2024-03-31 10:30:30 -05:00
parent a4ba6a81cf
commit cb95adb2f2
12 changed files with 281 additions and 53 deletions

View File

@@ -0,0 +1,8 @@
## Headers
proxy_set_header Host $host;
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-Uri $request_uri;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-For $remote_addr;