From 9ae0cdd693369dfe852ad0335ae0e5d0817409b1 Mon Sep 17 00:00:00 2001 From: Jan Grewe <jan@faked.org> Date: Mon, 9 Mar 2015 23:50:00 +0100 Subject: [PATCH] use port 3000 by default, to match the Express default port and not collide with services on CI host --- README.md | 2 +- config.json-dist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e60d9b..2d08916 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The app also features a simple but functional web interface that will display th - Copy ```config.json-dist``` to ```config.js``` and edit it to your needs - Run ```npm install``` - Start with ```npm start``` -- Open a browser and access ```http://127.0.0.1:80``` (replace IP and port according to your configuration changes) +- Open a browser and access ```http://127.0.0.1:3000``` (replace IP and port according to your configuration changes) If your Wifi SD is on the same network as the one detected/configured, you should see that the card is found and the app is waiting for photos to be taken. diff --git a/config.json-dist b/config.json-dist index bd8a53d..1ad5125 100644 --- a/config.json-dist +++ b/config.json-dist @@ -2,6 +2,6 @@ "pathPhotos" : "/path/to/photos/folder", "previewWidth" : 1920, "previewHeight" : 1080, - "httpPort" : 80, + "httpPort" : 3000, "broadcastAddr" : "192.168.0.255" } -- GitLab