Modify Linux server deploy to target Ubuntu specifically.

This commit is contained in:
Jared Goodwin 2020-01-19 16:19:08 -08:00
parent 6b56900e02
commit 76ac618854
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ The following steps will configure your Windows 10 machine for building the Remo
* Documentation for hosting in IIS can be found here: https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/index?view=aspnetcore-3.1
## Hosting a Server (Ubuntu)
* Ubuntu 18.04 and 19.04 have been tested. The Linux server package might work with other distros after some alterations to the setup script.
* 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).
* 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.

View File

@ -33,9 +33,9 @@ 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"
unzip -o Remotely_Server_Linux-x64.zip -d $appRoot
rm Remotely_Server_Linux-x64.zip
wget "https://github.com/Jay-Rad/Remotely/releases/latest/download/Remotely_Server_Ubuntu-x64.zip"
unzip -o Remotely_Server_Ubuntu-x64.zip -d $appRoot
rm Remotely_Server_Ubuntu-x64.zip
setfacl -R -m u:www-data:rwx $appRoot
chown -R www-data:www-data $appRoot