-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample.env
82 lines (68 loc) · 1.37 KB
/
sample.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# This file is the minimal confuguration file used by Dotenv to define the
# environment variables on localhost.
#
# Instructions:
# 1. copy this file as `.env`
# 2. edit the `.env` file with working values
# 3. uncomment the lines to activate or configure associated features
#
# Sections (displayed in sorted in alphabtic order):
# - server
# - session
# - security
#
# Line size max: 80 characters.
#
# =======
# SERVER
# =======
# Change host
#
# presence: optional
# type: String
# default: localhost
# HOST=
# Change port
#
# presence: optional
# type: Number
# default: 7654
# PORT=
# Use https
#
# presence: optional
# type: Boolean
# default: false
# HTTPS=
# When https is enabled, you need provide HTTPS_PRIVATE_KEY
#
# presence: required when HTTPS is enabled
# type: String
# default: none
# HTTPS_PRIVATE_KEY=
# When https is enabled, you need provide HTTPS_CERT
#
# presence: required when HTTPS is enabled
# type: String
# default: none
# HTTPS_CERT=
# =======
# SESSION
# =======
# Create a new session for every authn request instead of reusing an existing session
#
# presence: optional
# type: Boolean
# default: false
# ROLL_SESSION=
# ========
# SECURITY
# ========
# Secret salt value used in JWT token generation.
#
# If not present, the application will crash during bootstrap.
#
# presence: required
# type: String
# default: none
AUTH_SECRET=Change me!