You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1009 B
YAML
33 lines
1009 B
YAML
# Debug logging. Should be disabled when INN2 uses us, because INN2
|
|
# will stop authenticate.
|
|
debug: false
|
|
|
|
# Database configuration
|
|
database:
|
|
# DSN in form of "proto://user:pass@address:port/database". "port"
|
|
# part can be ommitted.
|
|
dsn: ""
|
|
# Parameters for database connection. Should be safe to not change them.
|
|
parameters: "connect_timeout=10&sslmode=disable"
|
|
# FUDForum's database prefix.
|
|
prefix: ""
|
|
|
|
# Groups to users mapping.
|
|
# This is a workaround, in future versions all group membership management
|
|
# will be done on FUDForum side.
|
|
groups:
|
|
# Default group for users.
|
|
default: "regular"
|
|
# Groups to users mapping.
|
|
# This is a list of structures. Example "admin" group included.
|
|
# Group name from "group" parameter will be added to user as INN2 wants
|
|
# only on successful authentications. In this example this string will
|
|
# be returned to INN2:
|
|
#
|
|
# User:localadmin@admin
|
|
#
|
|
groups:
|
|
- group: "admin"
|
|
# This is a list of users.
|
|
users:
|
|
- "localadmin" |