diff options
author | Georg Pfuetzenreuter | 2022-12-18 16:46:54 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2022-12-18 16:46:54 +0100 |
commit | 9501cbf678a4ef99ccbd8c53f35b3209569f4c8e (patch) | |
tree | 29ea371a405197037d120a8d9848971a547de227 /SUSE/takahe.sysconfig | |
parent | 86bc48f3e0b57bd63673324c1177e93da806de7a (diff) | |
download | takahe-9501cbf678a4ef99ccbd8c53f35b3209569f4c8e.tar.gz takahe-9501cbf678a4ef99ccbd8c53f35b3209569f4c8e.tar.bz2 takahe-9501cbf678a4ef99ccbd8c53f35b3209569f4c8e.zip |
Import packaging fileslibertacasa-package
- setup.py to install the library as a Python package
- systemd services and target for running as a daemon
- sysconfig file providing environment variables to the application
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'SUSE/takahe.sysconfig')
-rw-r--r-- | SUSE/takahe.sysconfig | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/SUSE/takahe.sysconfig b/SUSE/takahe.sysconfig new file mode 100644 index 0000000..c9f9f3a --- /dev/null +++ b/SUSE/takahe.sysconfig @@ -0,0 +1,33 @@ +# This file is shipped as part of the Takahe package. +# Author: Georg Pfuetzenreuter <mail+rpm@georg-pfuetzenreuter.net> + +# Hostname or IP address of the database server +PGHOST= + +# Name of the database +PGDATABASE= + +# Username and password to authenticate to the database with +PGUSER= +PGPASSWORD= + +# Random string - generated during installation +TAKAHE_SECRET_KEY=__REPLACE_ME__ + +# Domain Takahe is being served on +TAKAHE_MAIN_DOMAIN= + +# Email address to be promoted as an Administrator - set and uncomment this only for the first start, then comment it again +# TAKAHE_AUTO_ADMIN_EMAIL= + +# Set to true if Takahi is being served behind a reverse proxy +TAKAHE_USE_PROXY_HEADERS=true + +# Directory to store media files in +TAKAHE_MEDIA_ROOT=/srv/takahe/media + +# URL media files are being served from +TAKAHE_MEDIA_URL= + +# IP address and port for the Gunicorn server to bind to +BIND='[::]:8000' |