diff options
author | Lauri Ojansivu <x@xet7.org> | 2020-04-01 00:34:21 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2020-04-01 00:34:21 +0300 |
commit | c60a092fc0ed9fe15c417bcb443b1e3e3aaedf7e (patch) | |
tree | 4fe137a79ccf6d5a672e080493ba6e002f6e9a9f | |
parent | b33f44e23f310961606d5a36929dd0f6828931c3 (diff) | |
download | wekan-c60a092fc0ed9fe15c417bcb443b1e3e3aaedf7e.tar.gz wekan-c60a092fc0ed9fe15c417bcb443b1e3e3aaedf7e.tar.bz2 wekan-c60a092fc0ed9fe15c417bcb443b1e3e3aaedf7e.zip |
Fix start-wekan.sh MongoDB port to 27017.
Thanks to Keelan and xet7 !
Related #2979
-rwxr-xr-x | start-wekan.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/start-wekan.sh b/start-wekan.sh index 9a839b3c..bb9249a6 100755 --- a/start-wekan.sh +++ b/start-wekan.sh @@ -7,7 +7,7 @@ # Debug OIDC OAuth2 etc. #export DEBUG=true #--------------------------------------------- - export MONGO_URL='mongodb://127.0.0.1:27018/wekan' + export MONGO_URL='mongodb://127.0.0.1:27017/wekan' #--------------------------------------------- # Production: https://example.com/wekan # Local: http://localhost:2000 |