diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-12 17:34:29 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-12 17:37:56 +0200 |
commit | 96fb2907b5a3e7f348684749d5eb717e79fb2c61 (patch) | |
tree | bc958b906c499b9139b2a9e5f6ce352722a34dc3 /webapp | |
parent | 9fd633261e9e505e73022a01330420ec3e6b82dc (diff) |
Used non default syncthing port to avoid confict.
Diffstat (limited to 'webapp')
-rw-r--r-- | webapp/src/app/services/config.service.ts | 2 | ||||
-rw-r--r-- | webapp/src/app/services/syncthing.service.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/app/services/config.service.ts b/webapp/src/app/services/config.service.ts index 98dec34..3f07a6a 100644 --- a/webapp/src/app/services/config.service.ts +++ b/webapp/src/app/services/config.service.ts @@ -125,7 +125,7 @@ export class ConfigService { projects: [], localSThg: { ID: null, - URL: "http://localhost:8384", + URL: "http://localhost:8385", retry: 10, // 10 seconds tilde: "", } diff --git a/webapp/src/app/services/syncthing.service.ts b/webapp/src/app/services/syncthing.service.ts index aefb039..2e6da1c 100644 --- a/webapp/src/app/services/syncthing.service.ts +++ b/webapp/src/app/services/syncthing.service.ts @@ -104,7 +104,7 @@ interface ISTConfiguration { } // Default settings -const DEFAULT_GUI_PORT = 8384; +const DEFAULT_GUI_PORT = 8386; const DEFAULT_GUI_API_KEY = "1234abcezam"; const DEFAULT_RESCAN_INTERV = 0; // 0: use syncthing-inotify to detect changes |