Skip to content

Commit

Permalink
Update URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Aug 28, 2020
1 parent 1db7828 commit 0eec7ec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ A remote control and remote scripting solution, built with .NET Core, SignalR Co
[![Donate](https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-small.png)](https://paypal.me/translucency)

Website: https://remotely.one
Multi-Tenant Demo Server: https://app.remotely.one
Hosted App: https://app.remotely.one
Subreddit: https://www.reddit.com/r/remotely_app/

## Client Prerequisites:
* Endpoint devices require the .NET Core runtime to be installed.
Expand All @@ -26,7 +27,7 @@ The following steps will configure your Windows 10 machine for building the Remo
* Install the latest .NET Core SDK.
* Link: https://dotnet.microsoft.com/download
* Clone the git repository and open the solution in Visual Studio.
* Run Publish.ps1 in the [Utilities folder in source control](https://raw.githubusercontent.com/Jay-Rad/Remotely/master/Utilities/Publish.ps1).
* Run Publish.ps1 in the [Utilities folder in source control](https://raw.githubusercontent.com/lucent-sea/Remotely/master/Utilities/Publish.ps1).
* Example: powershell -f [path]\Publish.ps1 -outdir C:\inetpub\remotely -rid win10-x64 -hostname https://mysite.mydomain.com
* The output folder will now contain the server, with the clients in the Downloads folder.
* The above hostname will be hardcoded in the screen-sharing desktop apps, but can be changed via the options menu.
Expand All @@ -37,7 +38,7 @@ The following steps will configure your Windows 10 machine for building the Remo
## Hosting a Server (Windows)
* Build the Remotely server and clients using the above steps.
* Create a site in IIS that will run Remotely.
* Run Install-RemotelyServer.ps1 (as an administrator), which is in the [Utilities folder in source control](https://raw.githubusercontent.com/Jay-Rad/Remotely/master/Utilities/Install-RemotelyServer.ps1) and on the Releases page.
* Run Install-RemotelyServer.ps1 (as an administrator), which is in the [Utilities folder in source control](https://raw.githubusercontent.com/lucent-sea/Remotely/master/Utilities/Install-RemotelyServer.ps1) and on the Releases page.
* Alternatively, you can build from source and copy the server files to the site folder.
* Download and install the .NET Core Runtime (not the SDK) with the Hosting Bundle.
* Link: https://dotnet.microsoft.com/download/dotnet-core/current/runtime
Expand All @@ -54,7 +55,7 @@ The following steps will configure your Windows 10 machine for building the Remo

## Hosting a Server (Ubuntu)
* Ubuntu 18.04 and 19.04 have been tested.
* Run Remotely_Server_Setup.sh (with sudo), which is in the [Utilities folder in source control](https://raw.githubusercontent.com/Jay-Rad/Remotely/master/Utilities/Remotely_Server_Install.sh).
* Run Remotely_Server_Setup.sh (with sudo), which is in the [Utilities folder in source control](https://raw.githubusercontent.com/lucent-sea/Remotely/master/Utilities/Remotely_Server_Install.sh).
* The script is designed to install Remotely and Nginx on the same server, running Ubuntu 18.04 or 19.04. You'll need to manually set up other configurations.
* A helpful user supplied an example Apache configuration, which can be found in the Utilities folder.
* The script will prompt for the "App root" location, which is the above directory where the server files are located.
Expand Down
2 changes: 1 addition & 1 deletion Utilities/Install-RemotelyServer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ try {
}
Wrap-Host "Downloading server package..."
$ProgressPreference = "SilentlyContinue"
Invoke-WebRequest -Uri "https://github.com/Jay-Rad/Remotely/releases/latest/download/Remotely_Server_Win-x64.zip" -OutFile "$env:TEMP\Remotely_Server_Win-x64.zip"
Invoke-WebRequest -Uri "https://github.com/lucent-sea/Remotely/releases/latest/download/Remotely_Server_Win-x64.zip" -OutFile "$env:TEMP\Remotely_Server_Win-x64.zip"
$ProgressPreference = "Continue"
Wrap-Host "Extracting server files..."
[System.Reflection.Assembly]::LoadWithPartialName("System.IO.Compression.FileSystem") | Out-Null
Expand Down
2 changes: 1 addition & 1 deletion Utilities/Remotely_CentOS_Install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ yum -y install libgdiplus

# Download and install Remotely files.
mkdir -p $appRoot
wget "https://github.com/Jay-Rad/Remotely/releases/latest/download/Remotely_Server_Linux-x64.zip"
wget "https://github.com/lucent-sea/Remotely/releases/latest/download/Remotely_Server_Linux-x64.zip"
unzip -o Remotely_Server_Linux-x64.zip -d $appRoot
rm Remotely_Server_Linux-x64.zip
setfacl -R -m u:apache:rwx $appRoot
Expand Down
2 changes: 1 addition & 1 deletion Utilities/Remotely_Server_Install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ apt-get -y install libgdiplus

# Download and install Remotely files.
mkdir -p $appRoot
wget "https://github.com/Jay-Rad/Remotely/releases/latest/download/Remotely_Server_Linux-x64.zip"
wget "https://github.com/lucent-sea/Remotely/releases/latest/download/Remotely_Server_Linux-x64.zip"
unzip -o Remotely_Server_Linux-x64.zip -d $appRoot
rm Remotely_Server_Linux-x64.zip
setfacl -R -m u:www-data:rwx $appRoot
Expand Down

0 comments on commit 0eec7ec

Please sign in to comment.