]> cat aescling's git repositories - mastodon.git/blob - .env.production.sample
Bump lodash from 4.17.20 to 4.17.21 (#15774)
[mastodon.git] / .env.production.sample
1 # This is a sample configuration file. You can generate your configuration
2 # with the `rake mastodon:setup` interactive setup wizard, but to customize
3 # your setup even further, you'll need to edit it manually. This sample does
4 # not demonstrate all available configuration options. Please look at
5 # https://docs.joinmastodon.org/admin/config/ for the full documentation.
6
7 # Federation
8 # ----------
9 # This identifies your server and cannot be changed safely later
10 # ----------
11 LOCAL_DOMAIN=example.com
12
13 # Redis
14 # -----
15 REDIS_HOST=localhost
16 REDIS_PORT=6379
17
18 # PostgreSQL
19 # ----------
20 DB_HOST=/var/run/postgresql
21 DB_USER=mastodon
22 DB_NAME=mastodon_production
23 DB_PASS=
24 DB_PORT=5432
25
26 # ElasticSearch (optional)
27 # ------------------------
28 ES_ENABLED=true
29 ES_HOST=localhost
30 ES_PORT=9200
31
32 # Secrets
33 # -------
34 # Make sure to use `rake secret` to generate secrets
35 # -------
36 SECRET_KEY_BASE=
37 OTP_SECRET=
38
39 # Web Push
40 # --------
41 # Generate with `rake mastodon:webpush:generate_vapid_key`
42 # --------
43 VAPID_PRIVATE_KEY=
44 VAPID_PUBLIC_KEY=
45
46 # Sending mail
47 # ------------
48 SMTP_SERVER=smtp.mailgun.org
49 SMTP_PORT=587
50 SMTP_LOGIN=
51 SMTP_PASSWORD=
52 SMTP_FROM_ADDRESS=notificatons@example.com
53
54 # File storage (optional)
55 # -----------------------
56 S3_ENABLED=true
57 S3_BUCKET=files.example.com
58 AWS_ACCESS_KEY_ID=
59 AWS_SECRET_ACCESS_KEY=
60 S3_ALIAS_HOST=files.example.com
This page took 0.071843 seconds and 5 git commands to generate.