diff --git a/README.md b/README.md index 5cca5c3a..6556963b 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/Utilities/Remotely_Server_Install.sh b/Utilities/Remotely_Server_Install.sh index 93600bea..62342ed1 100644 --- a/Utilities/Remotely_Server_Install.sh +++ b/Utilities/Remotely_Server_Install.sh @@ -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