Skip to content

Commit

Permalink
Merge pull request #152 from concord-consortium/use-https-and-wss-con…
Browse files Browse the repository at this point in the history
…nections

2022-01-25 - Use SSL for Websocket & Log Server connections
  • Loading branch information
mklewandowski authored Feb 3, 2022
2 parents 12b6372 + 83560ba commit 4918d8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Assets/Scripts/Network/ServerList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ServerList

public static ServerRecord Local = new ServerRecord("Local", "ws://localhost:2567");
public static ServerRecord Custom = new ServerRecord("Custom", "ws://192.168.1.86:2567");
public static ServerRecord Dev = new ServerRecord("Dev", "ws://ceasar-serve-update-col-4va3ac.herokuapp.com/");
public static ServerRecord Web = new ServerRecord("Web", "ws://ceasar-server-staging.herokuapp.com/");
public static ServerRecord Dev = new ServerRecord("Dev", "wss://ceasar-serve-update-col-4va3ac.herokuapp.com/");
public static ServerRecord Web = new ServerRecord("Web", "wss://ceasar-server-staging.herokuapp.com/");

// track our single instance:
private static ServerList instance;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Utilities/SimulationConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static Dictionary<string, string> LookupButtonsByPanel()
public static readonly string CONSTELLATIONS_NONE = "none";

// ======== Logging configuration: ====================================================
public static readonly string LOG_URL = "http://cc-log-manager.herokuapp.com/api/logs";
public static readonly string LOG_URL = "https://cc-log-manager.herokuapp.com/api/logs";
public static readonly string LOG_APP_NAME = "CEASAR";

public static readonly string LOG_EVENT_DISCONNECT = "Disconnected";
Expand Down

0 comments on commit 4918d8a

Please sign in to comment.