-
Notifications
You must be signed in to change notification settings - Fork 3
/
common.env
50 lines (38 loc) · 1.03 KB
/
common.env
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
49
50
#################
# Nginx Ingress #
#################
# Domain Name
NGINX_SERVER_NAME=example.com
NGINX_SERVER_NAME_ALIAS=www.example.com
# Fixing Nginx '$foobar'
# Do Not Change
DOLLAR=$
##########################
# Saleor Frontend Config #
##########################
API_URI=https://$NGINX_SERVER_NAME/graphql/
APP_MOUNT_URI=/dashboard/
STATIC_URL=$APP_MOUNT_URI
######################################
# Letsencrypt-DNS configuration file #
######################################
# Letsencrypt email address
EMAIL=admin@example.com
# Lexicon provider
PROVIDER=cloudflare
# Provider options
PROVIDER_OPTIONS=--auth-username=my_cloudflare_email --auth-token=my_cloudflare_global_token
# DNS replication delay
SLEEP_TIME=30
# Certificate directory mode
DIRS_MODE=0750
# Certificate files mode
FILES_MODE=0640
# Docker Compose Letsencrypt Env
VERSION=latest
LETSENCRYPT_USER_MAIL=$EMAIL
LEXICON_PROVIDER=$PROVIDER
LEXICON_PROVIDER_OPTIONS=$PROVIDER_OPTIONS
LEXICON_SLEEP_TIME=$SLEEP_TIME
CERTS_DIRS_MODE=$DIRS_MODE
CERTS_FILES_MODE=$FILES_MODE