Update more URLs to new infra.

Mostly auth but also a reference to the old hub URL.
This commit is contained in:
Pieter-Jan Briers
2024-05-23 17:40:43 +02:00
parent b0922b8e0e
commit cf133ca341
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ tags = ""
# Must be in the form of an ss14:// or ss14s:// URI pointing to the status API.
server_url = ""
# Comma-separated list of URLs of hub servers to advertise to.
hub_urls = "https://central.spacestation14.io/hub/"
hub_urls = "https://hub.spacestation14.com/"
[build]
# *Absolutely all of these can be supplied using a "build.json" file*
@@ -98,5 +98,5 @@ hub_urls = "https://central.spacestation14.io/hub/"
# You should probably never EVER need to touch this, but if you need a custom auth server,
# (the auth server being the one which manages Space Station 14 accounts), you change it here.
# server = https://central.spacestation14.io/auth/
# server = https://auth.spacestation14.com/

View File

@@ -20,7 +20,7 @@ namespace Robust.Shared.Network
internal sealed class AuthManager : IAuthManager
{
public const string DefaultAuthServer = "https://central.spacestation14.io/auth/";
public const string DefaultAuthServer = "https://auth.spacestation14.com/";
public NetUserId? UserId { get; set; }
public string? Server { get; set; } = DefaultAuthServer;