Add setting for bind IP (default is still 0.0.0.0)

This commit is contained in:
Cadence Ember
2020-04-18 00:18:58 +12:00
parent c9ac37c586
commit 8398049f02
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,11 @@ let constants = {
// If you are using nginx to make Bibliogram accessible on port 80/443, do NOT write a port here.
// For example, "https://bibliogram.art"
website_origin: "http://localhost:10407",
// IP address to bind to.
// "0.0.0.0" will make the server reachable on all IPv4 interfaces.
// "::" will make the server reachable on all IPv6 interfaces, and maybe also IPv4. (https://nodejs.org/api/net.html#net_server_listen_port_host_backlog_callback)
// If you run nginx, you must change the nginx config instead.
bind_ip: "0.0.0.0",
// Port to actually run the webserver on.
port: 10407,
// You MUST read /src/site/pug/privacy.pug.template before changing has_privacy_policy!