2024-07-14 17:39:03 -04:00
|
|
|
db:
|
2024-07-14 21:26:53 -04:00
|
|
|
driver: pgx
|
2024-07-14 17:39:03 -04:00
|
|
|
connect: 'postgres://postgres:password@localhost:5432/example'
|
2024-08-14 19:12:20 -04:00
|
|
|
cors:
|
|
|
|
allowedOrigins:
|
|
|
|
- 'http://localhost:*'
|
|
|
|
- 'https://stillbox.server'
|
2024-08-04 08:55:12 -04:00
|
|
|
auth:
|
|
|
|
jwtsecret: 'super secret string'
|
|
|
|
# this is the JWT cookie domain
|
|
|
|
domain: example.com
|
|
|
|
# this allows the JWT cookie to be served over plain HTTP only for these Host: header values
|
|
|
|
allowInsecureFor:
|
|
|
|
"localhost:3050": true
|
2024-07-14 17:39:03 -04:00
|
|
|
listen: ':3050'
|
|
|
|
public: true
|