Compare commits

...

4 Commits

Author SHA1 Message Date
Elias Schneider
5e1d19e0a4 release: 0.5.3 2024-09-26 09:36:33 +02:00
edbourque0
d6a9bb4c09 fix: add space to "Firstname" and "Lastname" label (#31)
Co-authored-by: Elias Schneider <login@eliasschneider.com>
2024-09-26 09:33:02 +02:00
Elias Schneider
3c67765992 fix: port environment variables get ignored in caddyfile 2024-09-26 09:08:59 +02:00
Elias Schneider
6bb613e0e7 chore: set the go version to 1.23.1 2024-09-19 08:56:30 +02:00
9 changed files with 30 additions and 22 deletions

View File

@@ -1 +1 @@
0.5.2 0.5.3

View File

@@ -1,3 +1,11 @@
## [](https://github.com/stonith404/pocket-id/compare/v0.5.2...v) (2024-09-26)
### Bug Fixes
* add space to "Firstname" and "Lastname" label ([#31](https://github.com/stonith404/pocket-id/issues/31)) ([d6a9bb4](https://github.com/stonith404/pocket-id/commit/d6a9bb4c09efb8102da172e49c36c070b341f0fc))
* port environment variables get ignored in caddyfile ([3c67765](https://github.com/stonith404/pocket-id/commit/3c67765992d7369a79812bc8cd216c9ba12fd96e))
## [](https://github.com/stonith404/pocket-id/compare/v0.5.1...v) (2024-09-19) ## [](https://github.com/stonith404/pocket-id/compare/v0.5.1...v) (2024-09-19)

View File

@@ -1,6 +1,6 @@
module github.com/stonith404/pocket-id/backend module github.com/stonith404/pocket-id/backend
go 1.23 go 1.23.1
require ( require (
github.com/caarlos0/env/v11 v11.2.2 github.com/caarlos0/env/v11 v11.2.2

View File

@@ -1,7 +1,7 @@
:80 { :80 {
reverse_proxy /api/* http://localhost:8080 reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080}
reverse_proxy /.well-known/* http://localhost:8080 reverse_proxy /.well-known/* http://localhost:{$BACKEND_PORT:8080}
reverse_proxy /* http://localhost:3000 reverse_proxy /* http://localhost:{$PORT:3000}
log { log {
output file /var/log/caddy/access.log output file /var/log/caddy/access.log

View File

@@ -1,11 +1,11 @@
:80 { :80 {
reverse_proxy /api/* http://localhost:8080 { reverse_proxy /api/* http://localhost:{$BACKEND_PORT:8080} {
trusted_proxies 0.0.0.0/0 trusted_proxies 0.0.0.0/0
} }
reverse_proxy /.well-known/* http://localhost:8080 { reverse_proxy /.well-known/* http://localhost:{$BACKEND_PORT:8080} {
trusted_proxies 0.0.0.0/0 trusted_proxies 0.0.0.0/0
} }
reverse_proxy /* http://localhost:3000 { reverse_proxy /* http://localhost:{$PORT:3000} {
trusted_proxies 0.0.0.0/0 trusted_proxies 0.0.0.0/0
} }