From 8991235af7b5951a919ba213ffaa029e2d1667c1 Mon Sep 17 00:00:00 2001 From: Jon Richter Date: Thu, 9 May 2024 21:51:53 +0200 Subject: [PATCH] Chore: relocate pretalx.cfg example --- .../pretalx.cfg => config/pretalx.cfg.example | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) rename conf/pretalx.cfg => config/pretalx.cfg.example (69%) diff --git a/conf/pretalx.cfg b/config/pretalx.cfg.example similarity index 69% rename from conf/pretalx.cfg rename to config/pretalx.cfg.example index 044ab12..528de43 100644 --- a/conf/pretalx.cfg +++ b/config/pretalx.cfg.example @@ -5,32 +5,32 @@ ; never run debug in production. Make sure you serve all requests for the ; `/static/` and `/media/` paths when debug is False. ; See [installation](https://docs.pretalx.org/administrator/installation/#step-7-ssl) for more information -debug = True -url = http://localhost +debug = False +url = http://localhost:8080 [database] -backend = mysql +backend = postgresql name = pretalx user = pretalx password = veryunsecureplschange -host = pretalx-db -port = 3306 +host = postgres +port = 5432 -[mail] -from = some@email.address -host = smtp -port = 25 +#[mail] +#from = some@email.address +#host = smtp +#port = 25 #user = admin #password = something #tls = False #ssl = True [celery] -backend = redis://pretalx-redis/1 -broker = redis://pretalx-redis/2 +backend = redis://redis/1 +broker = redis://redis/2 [redis] -location=redis://pretalx-redis/0 +location=redis://redis/0 ; Remove the following line if you are unsure about your redis' security ; to reduce impact if redis gets compromised. -sessions=true +sessions = true