orca-registry/config-example.toml

25 lines
691 B
TOML
Raw Normal View History

2023-04-26 01:50:34 +00:00
listen_address = "127.0.0.1"
listen_port = "3000"
2023-05-29 03:48:03 +00:00
url = "http://localhost:3000/"
[storage]
driver = "filesystem"
path = "/app/blobs"
2023-05-29 03:48:03 +00:00
[database]
type = "sqlite"
path = "/app/orca.db"
2023-05-29 03:48:03 +00:00
#[ldap]
#connection_url = "ldap://localhost:389"
#bind_dn = "cn=admin,dc=planetexpress,dc=com"
#bind_password = "GoodNewsEveryone"
#user_base_dn = "ou=people,dc=planetexpress,dc=com"
#group_base_dn = "ou=people,dc=planetexpress,dc=com"
#
#user_search_filter = "(&(objectClass=person)(mail=%s))"
#group_search_filter = "(&(objectclass=groupOfNames)(member=%d))"
#
#admin_filter = "(memberOf=cn=admin_staff,ou=people,dc=planetexpress,dc=com)"
2023-05-29 03:48:03 +00:00
#login_attribute = "mail"
#display_name_attribute = "displayName"