From edd902397e505ac76f9bfc6c5335581faf955eed Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Sat, 9 Jan 2021 23:03:39 +1300 Subject: [PATCH] Remove hanging comma in config.json Change default port assignment from 8000 to 8001 in config.json and FreeBSD service config --- config/default.json | 2 +- freebsd/rc.d/homebrewery | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/default.json b/config/default.json index d7b5fc31d..daf77e82e 100644 --- a/config/default.json +++ b/config/default.json @@ -2,5 +2,5 @@ "host" : "homebrewery.local.naturalcrit.com:8000", "naturalcrit_url" : "local.naturalcrit.com:8010", "secret" : "secret", - "web_port" : 8001, + "web_port" : 8000 } diff --git a/freebsd/rc.d/homebrewery b/freebsd/rc.d/homebrewery index 2f921b9f6..2d8ea2bfb 100644 --- a/freebsd/rc.d/homebrewery +++ b/freebsd/rc.d/homebrewery @@ -37,7 +37,7 @@ pidfile="/var/run/${program_name}.pid" # File that allows the system to keep # Env Setup export HOME=$( getent passwd "homebrewery_runAs" | cut -d: -f6 ) # Gets the home directory of the runAs user export NODE_ENV="local" -export PORT=8001 +export PORT=8000 # Command Setup exec_cmd="${location}/${program_name}/server.js" # Path to the HomeBrewery server.js, /usr/local/bin/ when installed globally