mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
Remove occurrences of "remotely.one"
This commit is contained in:
parent
1259babcd2
commit
3673e96cd0
@ -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;
|
||||
}
|
||||
|
||||
|
||||
@ -11,7 +11,6 @@
|
||||
<Product>Remotely Agent</Product>
|
||||
<Company>Immense Networks</Company>
|
||||
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||||
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
||||
<Platforms>AnyCPU;x86;x64</Platforms>
|
||||
<AssemblyName>Remotely_Agent</AssemblyName>
|
||||
<RootNamespace>Remotely.Agent</RootNamespace>
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -30,7 +30,6 @@
|
||||
<Product>Remotely Desktop</Product>
|
||||
<Description>Desktop client for allowing your IT admin to provide remote support.</Description>
|
||||
<Copyright>Copyright © 2023 Immense Networks</Copyright>
|
||||
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@ -12,7 +12,6 @@
|
||||
<Authors>Jared Goodwin</Authors>
|
||||
<Company>Immense Networks</Company>
|
||||
<Product>Remotely Desktop</Product>
|
||||
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
||||
<Platforms>AnyCPU;x86;x64</Platforms>
|
||||
<StartupObject></StartupObject>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
|
||||
@ -122,7 +122,7 @@
|
||||
</div>
|
||||
<div class="mt-2 col-md-6">
|
||||
<div>Server URL</div>
|
||||
<div class="small text-muted mt-1">The URL of the server that the device connects to (e.g. https://app.remotely.one).</div>
|
||||
<div class="small text-muted mt-1">The URL of the server that the device connects to (e.g. https://app.example.com).</div>
|
||||
<input type="text" readonly class="form-control" value="ServerUrl" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user