mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
* initial auth implementation * add create user parser * add tests * update dependencies list * add login annd logout to index also improve auth * realworld fixes * add method set_option to Configuration and also use it everywhere * split CreateUser handler to additional read method * check user duplicate on auth mapping read * generate salt by using passlib instead of random.choice * case-insensetive usernames * update dependencies * update configuration reference * improve tests * fix codefactor errors * hide fields if authorization is enabled, but no auth supplied * add settings object for auth provider * readme update
61 lines
904 B
INI
61 lines
904 B
INI
[settings]
|
|
include = .
|
|
logging = logging.ini
|
|
|
|
[alpm]
|
|
aur_url = https://aur.archlinux.org
|
|
database = /var/lib/pacman
|
|
repositories = core extra community multilib
|
|
root = /
|
|
|
|
[auth]
|
|
salt = salt
|
|
|
|
[build]
|
|
archbuild_flags =
|
|
build_command = extra-x86_64-build
|
|
ignore_packages =
|
|
makechrootpkg_flags =
|
|
makepkg_flags = --skippgpcheck
|
|
|
|
[repository]
|
|
name = aur-clone
|
|
root = /var/lib/ahriman
|
|
|
|
[sign]
|
|
target =
|
|
|
|
[report]
|
|
target =
|
|
|
|
[email]
|
|
host = 127.0.0.1
|
|
link_path =
|
|
no_empty_report = no
|
|
port = 587
|
|
receivers = mail@example.com
|
|
sender = mail@example.com
|
|
template_path = ../web/templates/repo-index.jinja2
|
|
|
|
[html]
|
|
path =
|
|
homepage =
|
|
link_path =
|
|
template_path = ../web/templates/repo-index.jinja2
|
|
|
|
[upload]
|
|
target =
|
|
|
|
[rsync]
|
|
command = rsync --archive --verbose --compress --partial --delete
|
|
remote =
|
|
|
|
[s3]
|
|
access_key =
|
|
bucket = bucket
|
|
region = eu-central-1
|
|
secret_key =
|
|
|
|
[web]
|
|
host = 127.0.0.1
|
|
templates = ../web/templates |