summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Feuer <magnus@feuerworks.com>2016-02-25 15:19:27 -0800
committerMagnus Feuer <magnus@feuerworks.com>2016-02-25 15:19:27 -0800
commit2e1a435928dcd38a0edc5a2f5354d9edb6ef0b86 (patch)
tree76f1ae442a4ff2aa54e26f0f3a7c4f6f1977bfcb
parent16f2c353ac4a29b536308aca2601f3c4498ff76e (diff)
parentbdefb513f57a88c5eb25f90b7a4b0ed437aad69b (diff)
downloadrvi_core-2e1a435928dcd38a0edc5a2f5354d9edb6ef0b86.tar.gz
Merge pull request #92 from magnusfeuer/develop
Fixed port number on backend config file
-rw-r--r--priv/config/rvi_backend.config2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/config/rvi_backend.config b/priv/config/rvi_backend.config
index 8e5ec37..0781553 100644
--- a/priv/config/rvi_backend.config
+++ b/priv/config/rvi_backend.config
@@ -23,7 +23,7 @@ Env = fun(V, Def) ->
Str -> Str
end
end.
-MyPort = Env("RVI_MYPORT", 8800).
+MyPort = Env("RVI_MYPORT", 9000).
MyIP = Env("RVI_MYIP", "38.129.64.31").
IPPort = fun(IP, Port) ->
IP ++ ":" ++ integer_to_list(Port)