24 lines
456 B
Plaintext
24 lines
456 B
Plaintext
# change this document on your deployment and rename it to application.yaml
|
|
application:
|
|
name: myOtpAuth
|
|
trust-proxy: true
|
|
server:
|
|
bind: 127.0.0.1
|
|
port: 8080
|
|
database:
|
|
host: localhost
|
|
port: 5432
|
|
user: totpauth
|
|
password: totpauth
|
|
database: totpauth
|
|
reset: true
|
|
jwt:
|
|
secret: CHANGEME
|
|
mail:
|
|
from: totp@example.com
|
|
replyTo: noreply@example.com
|
|
host: mail.example.com
|
|
port: 587
|
|
auth:
|
|
user: totp@example.com
|
|
pass: CHANGEME |