Fix documentation regarding DB_SQLITE_FILE and prometheus reverse proxy if scraped publicly #noissue
All checks were successful
/ build (push) Successful in 3m26s
All checks were successful
/ build (push) Successful in 3m26s
This commit is contained in:
parent
98ed0c877b
commit
59c9f2e17e
1 changed files with 9 additions and 1 deletions
|
@ -111,7 +111,7 @@ services:
|
||||||
image: git.myservermanager.com/varakh/upda:latest
|
image: git.myservermanager.com/varakh/upda:latest
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
- DB_FILE=/data/upda.db
|
- DB_SQLITE_FILE=/data/upda.db
|
||||||
- ADMIN_USER=admin
|
- ADMIN_USER=admin
|
||||||
- ADMIN_PASSWORD=changeit
|
- ADMIN_PASSWORD=changeit
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
@ -158,5 +158,13 @@ server {
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
}
|
}
|
||||||
|
# metrics
|
||||||
|
location ~* ^/metrics {
|
||||||
|
proxy_pass http://localhost:8080;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue