37 lines
784 B
YAML
37 lines
784 B
YAML
# Next Workspace (NextWks) - Development Configuration
|
|
# Path: ./config.yaml (relative to binary)
|
|
# For production, install.sh deploys to /opt/nextwks/config.yaml
|
|
|
|
server:
|
|
host: "0.0.0.0"
|
|
port: 8080
|
|
|
|
admin:
|
|
secret_token: "dev-admin-secret-token"
|
|
|
|
database:
|
|
type: "sqlite"
|
|
path: "./data/nextwks.db"
|
|
|
|
authelia:
|
|
host: "http://127.0.0.1:9091"
|
|
config_path: "/opt/authelia/configuration.yml"
|
|
users_db_path: "/opt/authelia/users_database.yml"
|
|
|
|
oidc:
|
|
issuer_url: "https://auth.lohmar.co.uk"
|
|
client_id: "nextwks"
|
|
client_secret: ""
|
|
redirect_url: "https://wks.lohmar.co.uk/auth/callback"
|
|
domain: "wks.lohmar.co.uk"
|
|
|
|
smtp:
|
|
host: ""
|
|
port: 587
|
|
username: ""
|
|
password: ""
|
|
from: "noreply@nextwks.local"
|
|
|
|
session:
|
|
secret: "dev-session-secret"
|
|
expiry_minutes: 60
|