Initial commit for the project

This commit is contained in:
2023-02-20 21:36:12 +01:00
commit 96e4e659ce
10 changed files with 153 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# https://docs.firefly-iii.org/firefly-iii/installation/docker/
# In the section "Docker and reverse proxies", this is suggested for Nginx.
# Put it in the vhost.d/ folder, with your domain and _location at the end
# as a filename.
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;