Skip to content

Commit

Permalink
Chore: relocate pretalx.cfg example
Browse files Browse the repository at this point in the history
  • Loading branch information
almereyda committed May 9, 2024
1 parent a273bd5 commit 8991235
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions conf/pretalx.cfg → config/pretalx.cfg.example
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [email protected]
host = smtp
port = 25
#[mail]
#from = [email protected]
#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

0 comments on commit 8991235

Please sign in to comment.