summaryrefslogtreecommitdiffstats
path: root/server/config
diff options
context:
space:
mode:
authorFelix Ableitner <me@nutomic.com>2020-06-24 16:09:52 +0200
committerFelix Ableitner <me@nutomic.com>2020-06-24 16:09:52 +0200
commita9d98fd09bc8cc337266c55a6f2a8e58a421d9aa (patch)
tree19666eb71293750b2c0e863ca459aad56b3a984c /server/config
parentb94d38072982081803605f7439aeaa61af335db2 (diff)
Improve config files by adding documentation and removing some fields
Diffstat (limited to 'server/config')
-rw-r--r--server/config/defaults.hjson8
1 files changed, 5 insertions, 3 deletions
diff --git a/server/config/defaults.hjson b/server/config/defaults.hjson
index 97b9429c..482a7208 100644
--- a/server/config/defaults.hjson
+++ b/server/config/defaults.hjson
@@ -33,7 +33,7 @@
port: 8536
# json web token for authorization between server and client
jwt_secret: "changeme"
- # The dir for the front end
+ # The location of the frontend
front_end_dir: "../ui/dist"
# whether to enable activitypub federation. this feature is in alpha, do not enable in production, as might
# cause problems like remote instances fetching and permanently storing bad data.
@@ -55,13 +55,15 @@
}
# # email sending configuration
# email: {
-# # hostname of the smtp server
+# # hostname and port of the smtp server
# smtp_server: ""
# # login name for smtp server
# smtp_login: ""
# # password to login to the smtp server
# smtp_password: ""
-# # address to send emails from, eg "info@your-instance.com"
+# # address to send emails from, eg "noreply@your-instance.com"
# smtp_from_address: ""
+# # whether or not smtp connections should use tls
+# use_tls: true
# }
}