Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
NebulaServices
GitHub Repository: NebulaServices/Nebula
Path: blob/main/config.example.toml
976 views
1
[marketplace]
2
enabled = false # Turn on or off the marketplace entirely
3
psk = "CHANGEME" # Change this to something more secure.
4
level = 1
5
6
[seo]
7
enabled = false
8
domain = "https://nebulaproxy.io"
9
10
[db]
11
name = "database" # Your database name
12
username = "username" # The username of your DB (SQLITE just ignores this)
13
password = "password" # The password to your DB (SQLITE ignores this)
14
postgres = false # Enable to use postgres over sqlite (recommended for large prod instances)
15
16
[postgres] # Set the "domain" to either and ip address or a actual domain
17
domain = ""
18
port = 5432
19
20
[server.server]
21
port = 8080
22
wisp = true
23
logging = true # Disable for the tons & tons of logs to go away (useful for debugging but otherwise eh)
24
25
[masqr]
26
enabled = false
27
failed = "failed.html" # Default masqr failed page. For per-site failed pages, create a folder named "Masqrd" and create DOMAIN.TLD.html
28
whitelisted = ["https://nebulaservices.org"] # List of domains to skip masqr
29
url = "" # Masqr license URL
30