diff --git a/Agent.Installer.Win/ViewModels/MainWindowViewModel.cs b/Agent.Installer.Win/ViewModels/MainWindowViewModel.cs index 2f887031..86b4c1b8 100644 --- a/Agent.Installer.Win/ViewModels/MainWindowViewModel.cs +++ b/Agent.Installer.Win/ViewModels/MainWindowViewModel.cs @@ -317,7 +317,7 @@ public class MainWindowViewModel : ViewModelBase (serverUri.Scheme != Uri.UriSchemeHttp && serverUri.Scheme != Uri.UriSchemeHttps)) { Logger.Write("ServerUrl is not valid."); - MessageBoxEx.Show("Server URL must be a valid Uri (e.g. https://app.remotely.one).", "Invalid Server URL", MessageBoxButton.OK, MessageBoxImage.Error); + MessageBoxEx.Show("Server URL must be a valid Uri (e.g. https://app.example.com).", "Invalid Server URL", MessageBoxButton.OK, MessageBoxImage.Error); return false; } diff --git a/Agent/Agent.csproj b/Agent/Agent.csproj index 4d5b68f8..fb3e32fb 100644 --- a/Agent/Agent.csproj +++ b/Agent/Agent.csproj @@ -11,7 +11,6 @@ Remotely Agent Immense Networks 1.0.0.0 - https://remotely.one AnyCPU;x86;x64 Remotely_Agent Remotely.Agent diff --git a/Agent/Program.cs b/Agent/Program.cs index 82b8800b..37040092 100644 --- a/Agent/Program.cs +++ b/Agent/Program.cs @@ -2,13 +2,10 @@ using Microsoft.Extensions.Logging; using Remotely.Agent.Interfaces; using Remotely.Agent.Services; -using Remotely.Shared.Enums; using Remotely.Shared.Utilities; using Remotely.Shared.Services; using System; -using System.Diagnostics; using System.IO; -using System.ServiceProcess; using System.Threading.Tasks; using System.Runtime.Versioning; using Remotely.Agent.Services.Linux; diff --git a/Desktop.Linux/Desktop.Linux.csproj b/Desktop.Linux/Desktop.Linux.csproj index 7faab16c..15014a8a 100644 --- a/Desktop.Linux/Desktop.Linux.csproj +++ b/Desktop.Linux/Desktop.Linux.csproj @@ -30,7 +30,6 @@ Remotely Desktop Desktop client for allowing your IT admin to provide remote support. Copyright © 2023 Immense Networks - https://remotely.one enable diff --git a/Desktop.Win/Desktop.Win.csproj b/Desktop.Win/Desktop.Win.csproj index e5532159..bf4a04b5 100644 --- a/Desktop.Win/Desktop.Win.csproj +++ b/Desktop.Win/Desktop.Win.csproj @@ -12,7 +12,6 @@ Jared Goodwin Immense Networks Remotely Desktop - https://remotely.one AnyCPU;x86;x64 True diff --git a/Server/Components/Scripts/SavedScripts.razor b/Server/Components/Scripts/SavedScripts.razor index 39bfbc12..a768c94a 100644 --- a/Server/Components/Scripts/SavedScripts.razor +++ b/Server/Components/Scripts/SavedScripts.razor @@ -122,7 +122,7 @@
Server URL
-
The URL of the server that the device connects to (e.g. https://app.remotely.one).
+
The URL of the server that the device connects to (e.g. https://app.example.com).
diff --git a/Utilities/Example_Nginx_Config.txt b/Utilities/Example_Nginx_Config.txt index 2db1bb9c..0b82a5c8 100644 --- a/Utilities/Example_Nginx_Config.txt +++ b/Utilities/Example_Nginx_Config.txt @@ -1,6 +1,6 @@ server { listen 80; - server_name app.remotely.one *.app.remotely.one; + server_name app.example.com *.app.example.com; location / { proxy_pass http://localhost:5000; proxy_http_version 1.1;