-
Notifications
You must be signed in to change notification settings - Fork 3
/
01-fms-certbot.conf.example
58 lines (41 loc) · 1.98 KB
/
01-fms-certbot.conf.example
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
51
52
53
54
55
56
57
58
## NOTE: don't put quotes around the values of the variables
# ==============================================================================
# AWS Parameters
# ==============================================================================
# for best security:
# make sure that these are credentials for a user that just has the special policy
AWS_ACCESS_KEY_ID=XYZ
AWS_SECRET_ACCESS_KEY=ABC
# route 53 is a global service so strictly speaking the region is not needed
AWS_REGION=us-east-1
# ==============================================================================
# FMS Parameters
# ==============================================================================
FAC_USERNAME=something
FAC_PASSWORD=your_pw
# Set to 1 to get user prompts for script variables.
PROMPT=0
# [WARNING]: If set to 1, will automatically restart server, without warning.
RESTART_SERVER=1
# Used to determine max wait time for server to stop:
# time = MAX_WAIT_AMOUNT * 10 seconds
MAX_WAIT_AMOUNT=6
# ==============================================================================
# Certbot Parameters
# ==============================================================================
# Domain used to generate the certificate.
# When using multiple domains, separate them with a comma.
# ie: sample_domain1.com,sample_domain2.com
DOMAIN=sample_domain.com
# Email used to generate the certificate,
# will recieve reminders from Let's Encrypt when the certificate generated is about to expire.
# Set to 1, this will not use up a request and can be used as a dry-run to test.
# Set to 0, the command will be run and will use up a certificate request.
TEST_CERTIFICATE=1
# Set if trying to update an existing cert, ie: adding an additional domain.
UPDATE_EXISTING_CERT=0
# used only in the renewal script
# Set to 1, this will force renewal of a certificate even if it is not needed. It is
# recommended to keep this set at 0
FORCE_RENEW=0