forked from SachsKaylee/helios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
36 lines (29 loc) · 1.4 KB
/
.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
# The URI to your database. If you have installed MongoDB on the same machine and are
# using the default installation on of MongoDB you can leave this at its default.
# Otherwise see https://docs.mongodb.com/manual/reference/connection-string/ for details.
DB="mongodb://localhost/helios"
DB_OPTS="{"useNewUrlParser": true}"
# The ports to run Helios on. (Set HTTP to -1 to not not listen to HTTP at all -
# HSTS recommended in this case)
PORT_HTTP=80
PORT_HTTPS=443
# The IP Helios will bind to. Set to [::] for IPv6. You'll know when you need any
# other value.
BIND_IP="0.0.0.0"
# Host on these domains. The first domain will be your primary, canonical URL.
# Helios will only issue a certificate valid for these domains.
BIND_DOMAINS="localhost"
# Do you want HTTPS support? Valid values are:
# * none - No SSL
# * letsEncrypt - Free SSL certificates by Let's Encrypt. Make sure that your
# BIND_DOMAINS are correct and pointing to this server. (In this case also
# set AGREE_GREENLOCK_TOS to true)
# * certificate - Manually issued certificates (not implemented yet)
SSL="none"
AGREE_GREENLOCK_TOS=false
# Your webmaster mail. Required by Let's Encrypt and Web Push service.
MAIL="webmaster@localhost.local"
# TODO: Some sort of canonical port for NAT?
# Leave this at its default value unless you want to join in on developing Helios.
# Enables developer mode if set to development.
ENV=production