|
@@ -227,7 +227,7 @@ const server = http.createServer( (req, res) => {
|
|
|
return dashboard(res, dashboardLang, themeCookie, sessionData.get(state), reqURL, action);
|
|
|
} );
|
|
|
|
|
|
-server.listen( 8080, 'localhost', () => {
|
|
|
+server.listen( 8080, () => {
|
|
|
console.log( '- Dashboard: Server running at http://localhost:8080/' );
|
|
|
} );
|
|
|
|
|
@@ -254,4 +254,4 @@ function graceful(signal) {
|
|
|
}
|
|
|
|
|
|
process.once( 'SIGINT', graceful );
|
|
|
-process.once( 'SIGTERM', graceful );
|
|
|
+process.once( 'SIGTERM', graceful );
|