summaryrefslogtreecommitdiffstats
path: root/config.yaml
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.net>2025-08-07 15:14:27 +0100
committerLeonardo Bishop <me@leonardobishop.net>2025-08-07 15:18:14 +0100
commit658fbb94d5f0e9c10e8753d227bb16c287065ee1 (patch)
treeadd752297cab2203248ef40dfeec39198f989620 /config.yaml
Initial commit
Diffstat (limited to 'config.yaml')
-rw-r--r--config.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/config.yaml b/config.yaml
new file mode 100644
index 0000000..42ab435
--- /dev/null
+++ b/config.yaml
@@ -0,0 +1,24 @@
+server:
+ host: 127.0.0.1
+ port: 8080
+ # externalURL is the URL that your instance of Walrss is accessible at
+ # This is a required field
+ externalURL: "http://127.0.0.1:8080"
+email:
+ # These are required fields
+ host: "smtp.sendgrid.net"
+ port: 587
+ from: "Walrss <walrss@yourdomain.com>"
+ # These fields are not required
+ tls: "" # valid values are: starttls, tls, no - default: starttls
+ password: "yourapikey"
+ username: "apikey"
+platform:
+ disableRegistration: false
+ disableSecureCookies: false
+ contactInformation: "https://example.com" # optional. will be included in the user agent if set.
+oidc:
+ enable: false
+ clientID: "yourclientid"
+ clientSecret: "yourclientsecret"
+ issuer: "https://sso.example.com/"