@@ -11,9 +11,9 @@ the following order. The file that is found *last* will override the settings fr
1111the files found before.
1212
13131. ``PRETIX_CONFIG_FILE `` environment variable
14- 2. ``/etc/eventyay/Eventyay .cfg ``
14+ 2. ``/etc/eventyay/eventyay .cfg ``
15153. ``~/.Eventyay.cfg ``
16- 4. ``Eventyay .cfg `` in the current working directory
16+ 4. ``eventyay .cfg `` in the current working directory
1717
1818The file is expected to be in the INI format as specified in the `Python documentation `_.
1919
@@ -23,7 +23,7 @@ installation tutorials.
2323
2424.. note ::
2525
26- The configuration file is the recommended way to configure Eventyay . However, you can
26+ The configuration file is the recommended way to configure eventyay . However, you can
2727 also set them through environment variables. In this case, the syntax is
2828 ``PRETIX_SECTION_CONFIG ``. For example, to configure the setting ``password_reset ``
2929 from the ``[Eventyay] `` section, set ``PRETIX_PRETIX_PASSWORD_RESET=off `` in your
@@ -64,7 +64,7 @@ Example::
6464 Defaults to an empty string.
6565
6666``auth_backends ``
67- A comma-separated list of available auth backends. Defaults to ``Eventyay .base.auth.NativeAuthBackend ``.
67+ A comma-separated list of available auth backends. Defaults to ``eventyay .base.auth.NativeAuthBackend ``.
6868
6969``cookie_domain ``
7070 The cookie domain to be set. Defaults to ``None ``.
@@ -79,7 +79,7 @@ Example::
7979 Enables or disables the "keep me logged in" button. Defaults to ``on ``.
8080
8181``ecb_rates ``
82- By default, Eventyay periodically downloads a XML file from the European Central Bank to retrieve exchange rates
82+ By default, eventyay periodically downloads a XML file from the European Central Bank to retrieve exchange rates
8383 that are used to print tax amounts in the customer currency on invoices for some currencies. Set to ``off `` to
8484 disable this feature. Defaults to ``on ``.
8585
@@ -88,7 +88,7 @@ Example::
8888 Defaults to ``off ``.
8989
9090``obligatory_2fa ``
91- Enables or disables obligatory usage of Two-Factor Authentication for users of the Eventyay backend.
91+ Enables or disables obligatory usage of Two-Factor Authentication for users of the eventyay backend.
9292 Defaults to ``False ``
9393
9494``trust_x_forwarded_for ``
@@ -105,8 +105,8 @@ Example::
105105 Log violations of the Content Security Policy (CSP). Defaults to ``on ``.
106106
107107``csp_additional_header ``
108- Specifies a CSP header that will be **merged ** with Eventyay 's default header. For example, if you set this
109- to ``script-src https://mycdn.com ``, Eventyay will add ``https://mycdn.com `` as an **additional ** allowed source
108+ Specifies a CSP header that will be **merged ** with eventyay 's default header. For example, if you set this
109+ to ``script-src https://mycdn.com ``, eventyay will add ``https://mycdn.com `` as an **additional ** allowed source
110110 to all CSP headers. Empty by default.
111111
112112``loglevel ``
@@ -134,8 +134,8 @@ Example::
134134
135135 [database]
136136 backend=postgresql
137- name=Eventyay
138- user=Eventyay
137+ name=eventyay
138+ user=eventyay
139139 password=abcd
140140 host=localhost
141141 port=3306
@@ -156,11 +156,11 @@ Example::
156156Database replica settings
157157-------------------------
158158
159- If you use a replicated database setup, Eventyay expects that the default database connection always points to the primary database node.
159+ If you use a replicated database setup, eventyay expects that the default database connection always points to the primary database node.
160160Routing read queries to a replica on database layer is **strongly ** discouraged since this can lead to inaccurate such as more tickets
161161being sold than are actually available.
162162
163- However, Eventyay can still make use of a database replica to keep some expensive queries with that can tolerate some latency from your
163+ However, eventyay can still make use of a database replica to keep some expensive queries with that can tolerate some latency from your
164164primary database, such as backend search queries. The ``replica `` configuration section can have the same settings as the ``database ``
165165section (except for the ``backend `` setting) and will default back to the ``database `` settings for all values that are not given. This
166166way, you just need to specify the settings that are different for the replica.
@@ -199,7 +199,7 @@ Example::
199199 [mail]
200200 from=hello@localhost
201201 host=127.0.0.71
202- user=Eventyay
202+ user=eventyay
203203 password=foobar
204204 port=1025
205205 tls=on
@@ -213,13 +213,13 @@ Example::
213213
214214``from ``
215215 The email address to set as ``From `` header in outgoing emails by the system.
216- Default: ``Eventyay @localhost ``
216+ Default: ``eventyay @localhost ``
217217
218218``tls ``, ``ssl ``
219219 Use STARTTLS or SSL for the SMTP connection. Off by default.
220220
221221``admins ``
222- Comma-separated list of email addresses that should receive a report about every error code 500 thrown by Eventyay .
222+ Comma-separated list of email addresses that should receive a report about every error code 500 thrown by eventyay .
223223
224224.. _`django-settings` :
225225
@@ -234,7 +234,7 @@ Example::
234234
235235``secret ``
236236 The secret to be used by Django for signing and verification purposes. If this
237- setting is not provided, Eventyay will generate a random secret on the first start
237+ setting is not provided, eventyay will generate a random secret on the first start
238238 and will store it in the filesystem for later usage.
239239
240240``debug ``
@@ -265,24 +265,24 @@ Currently, metrics-collection requires a redis server to be available.
265265Memcached
266266---------
267267
268- You can use an existing memcached server as Eventyay 's caching backend::
268+ You can use an existing memcached server as eventyay 's caching backend::
269269
270270 [memcached]
271271 location=127.0.0.1:11211
272272
273273``location ``
274274 The location of memcached, either a host:port combination or a socket file.
275275
276- If no memcached is configured, Eventyay will use Django's built-in local-memory caching method.
276+ If no memcached is configured, eventyay will use Django's built-in local-memory caching method.
277277
278- .. note :: If you use memcached and you deploy Eventyay across multiple servers, you should use *one*
278+ .. note :: If you use memcached and you deploy eventyay across multiple servers, you should use *one*
279279 shared memcached instance, not multiple ones, because cache invalidations would not be
280280 propagated otherwise.
281281
282282Redis
283283-----
284284
285- If a redis server is configured, Eventyay can use it for locking, caching and session storage
285+ If a redis server is configured, eventyay can use it for locking, caching and session storage
286286to speed up various operations::
287287
288288 [redis]
@@ -296,7 +296,7 @@ to speed up various operations::
296296``session ``
297297 When this is set to ``True ``, redis will be used as the session storage.
298298
299- If redis is not configured, Eventyay will store sessions and locks in the database. If memcached
299+ If redis is not configured, eventyay will store sessions and locks in the database. If memcached
300300is configured, memcached will be used for caching instead of redis.
301301
302302Translations
@@ -309,18 +309,18 @@ can activate them like this::
309309 [languages]
310310 allow_incubating=pt-br,da
311311
312- You can also tell Eventyay about additional paths where it will search for translations::
312+ You can also tell eventyay about additional paths where it will search for translations::
313313
314314 [languages]
315315 path=/path/to/my/translations
316316
317- For a given language (e.g. ``pt-br ``), Eventyay will then look in the
317+ For a given language (e.g. ``pt-br ``), eventyay will then look in the
318318specific sub-folder, e.g. ``/path/to/my/translations/pt_BR/LC_MESSAGES/django.po ``.
319319
320320Celery task queue
321321-----------------
322322
323- For processing long-running tasks asynchronously, Eventyay requires the celery task queue.
323+ For processing long-running tasks asynchronously, eventyay requires the celery task queue.
324324For communication between the web server and the task workers in both direction, a messaging
325325queue and a result backend is needed. You can use a redis database for both directions, or
326326an AMQP server (e.g. RabbitMQ) as a broker and redis or your database as a result backend::
@@ -349,7 +349,7 @@ application. If you want to use sentry, you need to set a DSN in the configurati
349349Caching
350350-------
351351
352- You can adjust some caching settings to control how much storage Eventyay uses::
352+ You can adjust some caching settings to control how much storage eventyay uses::
353353
354354 [cache]
355355 tickets=48 ; Number of hours tickets (PDF, passbook, …) are cached
@@ -358,7 +358,7 @@ You can adjust some caching settings to control how much storage Eventyay uses::
358358Secret length
359359-------------
360360
361- If you are really paranoid, you can increase the length of random strings Eventyay uses in
361+ If you are really paranoid, you can increase the length of random strings eventyay uses in
362362various places like order codes, secrets in the ticket QR codes, etc. Example::
363363
364364 [entropy]
0 commit comments