summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-12 10:59:01 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-03-12 10:59:01 -0700
commitcc966fa05590c437e25d442eff2b5f58b4c138da (patch)
tree4e1b86e17685d47b4eb3c5833fa8dba69cd48abb
parent9fa38c1c8110e2d65578eb740dac5bde37621937 (diff)
downloadrvi_core-cc966fa05590c437e25d442eff2b5f58b4c138da.tar.gz
Commented out persistent backend connections
-rw-r--r--tizen.config29
1 files changed, 28 insertions, 1 deletions
diff --git a/tizen.config b/tizen.config
index 9b737fd..ba45e42 100644
--- a/tizen.config
+++ b/tizen.config
@@ -1,5 +1,10 @@
%% -*- erlang -*-
+%% Please see static_nodes and node_service_prefix config
+%% comments below. These two entries need to be configured
+%% followed by a reboot to get the correct RVI functionality
+%%
+%%
%% Copyright (C) 2014, Jaguar Land Rover
%%
%% This program is licensed under the terms and conditions of the
@@ -57,13 +62,35 @@
[
{ node_address, "0.0.0.0:0" },
+
+ %% EDIT THIS
+ %% Add a unique suffix to the node service prefix.
+ %% Add a unique identifier, such as an UUID IP address,
+ %% domain, or similar to ensure that this RVI node
+ %% is the only one with the given prefix.
+ %%
+ %% Valid examples are:
+ %% { node_service_prefix, "jlr.com/vin/eaf432a4-c8e0-11e4-a848-f0def1e1deca/" },
+ %% { node_service_prefix, "jlr.com/vin/user@gmail.com/" },
+ %% { node_service_prefix, "jlr.com/vin/1G4HP52K9TH693999/" },
+ %%
+ %%
{ node_service_prefix, "jlr.com/vin/" },
{ static_nodes,
[
%% Static node is rvi1.nginfotpdx.net, JLR's demo
%% server node.
- { "jlr.com/backend/", "38.129.64.13:8807" }
+
+ %% EDIT THIS
+ %% Once node_service_prefix has been updated above,
+ %% uncomment the line below to activate a persistent
+ %% connection to rvi1.nginftpdx.net.
+ %%
+ %% This is needed to get, among others, remote HVAC
+ %% to work.
+
+ %% { "jlr.com/backend/", "38.129.64.13:8807" }
]
},