From cecfac84540c5450841cd3bf57019f274d19d477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 11 Nov 2013 16:25:46 +0000 Subject: [PATCH] add copr.conf --- files/copr/fe/copr.conf | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 files/copr/fe/copr.conf diff --git a/files/copr/fe/copr.conf b/files/copr/fe/copr.conf new file mode 100644 index 0000000000..34a2f955b9 --- /dev/null +++ b/files/copr/fe/copr.conf @@ -0,0 +1,30 @@ +# Directory and files where is stored Copr database files +DATA_DIR = '/var/lib/copr/data' +DATABASE = '/var/lib/copr/data/copr.db' +OPENID_STORE = '/var/lib/copr/data/openid_store' +WHOOSHEE_DIR = '/var/lib/copr/data/whooshee' + +SECRET_KEY = {{ copr_secret_key }} +BACKEND_PASSWORD = {{ copr_backend_password }} + +# restrict access to a set of users +#USE_ALLOWED_USERS = False +#ALLOWED_USERS = ['bonnie', 'clyde'] + +SQLALCHEMY_DATABASE_URI = {{ copr_database_uri }} + +# Token length, defaults to 30 (max 255) +#API_TOKEN_LENGTH = 30 + +# Expiration of API token in days +#API_TOKEN_EXPIRATION = 180 + +# logging options +#SEND_LOGS_TO = ['root@localhost'] +#LOGGING_LEVEL = logging.ERROR + +DEBUG = False +SQLALCHEMY_ECHO = False + +CSRF_ENABLED = True +WTF_CSRF_ENABLED = True