forked from asciinema/asciinema-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.production.sample
48 lines (37 loc) · 1.46 KB
/
.env.production.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
### asciinema web app config file
## Settings below that are un-commented are required, the rest is optional.
## Values after "=" sign are taken as-is, so don't use double quotes for strings.
## Base URL of your asciinema web app instance
URL_SCHEME=http
URL_HOST=localhost
URL_PORT=3000
## Base secret key for signing cookies etc.
## Run `docker-compose run --rm phoenix asciinema gen_secret`
## and copy generated secret here.
SECRET_KEY_BASE=
## PostgreSQL connection URL.
## Default: postgresql://postgres@postgres/postgres
# DATABASE_URL=
## Disable public sign-ups.
## Set this variable to true or 1 when you don't want new users to sign up.
## Default: sign up enabled
# SIGN_UP_DISABLED=true
## Enable auto-archival of recordings uploaded by anonymous users.
## Set this variable to number of days after which the recordings are archived.
## Default: unset (no auto-archival)
# ASCIICAST_GC_DAYS=7
### E-mail delivery
## Outgoing mail hostname, used by namshi/smtp container.
MAILNAME=localhost
## "From" field for all emails sent by this instance.
## Default: asciinema <hello@hostname-from-base-url>
### File store
## By default we use local filesystem dir ("uploads" in app root dir).
## If you want to store uploaded recordings in S3 bucket instead,
## uncomment and set the following variables:
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# S3_BUCKET=my-asciinema-bucket
# S3_REGION=us-east-1