]> BookStack Code Mirror - website/commitdiff
Added ubuntu 20.04 install script details
authorDan Brown <redacted>
Fri, 24 Apr 2020 14:39:34 +0000 (15:39 +0100)
committerDan Brown <redacted>
Fri, 24 Apr 2020 14:39:34 +0000 (15:39 +0100)
content/docs/admin/installation.md

index 7b6bb801ddcb0e23f98e69c342ffa2e32aea09cd..c146bcb6165d1878a28ff928eafbf8e4b3521c45 100644 (file)
@@ -11,8 +11,9 @@ Below you can find details on how to install BookStack on your own hosting. Ther
 * [Shared Hosting](#shared)
 * [Manual](#manual)
 * [Docker](#docker)
-* [Ubuntu 16.04 Script](#ubuntu-1604)
+* [Ubuntu 20.04 Script](#ubuntu-2004)
 * [Ubuntu 18.04 Script](#ubuntu-1804)
+* [Ubuntu 16.04 Script](#ubuntu-1604)
 * [Community Guides](#community)
 
 ---
@@ -102,13 +103,13 @@ Community docker setups are available for those that would prefer to use a conta
 
 ---
 
-<a name="ubuntu-1604"></a>
+<a name="ubuntu-2004"></a>
 
-## Ubuntu 16.04 Installation Script
+## Ubuntu 20.04 Installation Script
 
-A script to install BookStack on a fresh instance of Ubuntu 16.04 is available. This script is ONLY FOR A FRESH OS, It will install Nginx, MySQL 5.7 & PHP7 and could OVERWRITE any existing web setup on the machine. It also does not set up mail settings or configure system security so you will have to do those separately. You can use the script as a reference if you're installing on a non-fresh machine.
+A script to install BookStack on a fresh instance of Ubuntu 20.04 is available. This script is ONLY FOR A FRESH OS, It will install Apache, MySQL 8.0 & PHP-7.4 and could OVERWRITE any existing web setup on the machine. It also does not set up mail settings or configure system security so you will have to do those separately. You can use the script as a reference if you're installing on a non-fresh machine.
 
-[Link to installation script](https://github.com/BookStackApp/devops/blob/master/scripts/installation-ubuntu-16.04.sh)
+[Link to installation script](https://github.com/BookStackApp/devops/blob/master/scripts/installation-ubuntu-20.04.sh)
 
 #### Running the Script
 
@@ -116,15 +117,16 @@ A script to install BookStack on a fresh instance of Ubuntu 16.04 is available.
 # Ensure you have read the above information about what this script does before executing these commands.
 
 # Download the script
-wget https://raw.githubusercontent.com/BookStackApp/devops/master/scripts/installation-ubuntu-16.04.sh
+wget https://raw.githubusercontent.com/BookStackApp/devops/master/scripts/installation-ubuntu-20.04.sh
 
 # Make it executable
-chmod a+x installation-ubuntu-16.04.sh
+chmod a+x installation-ubuntu-20.04.sh
 
 # Run the script with admin permissions
-sudo ./installation-ubuntu-16.04.sh
+sudo ./installation-ubuntu-20.04.sh
 ```
 
+
 ---
 
 <a name="ubuntu-1804"></a>
@@ -152,6 +154,31 @@ sudo ./installation-ubuntu-18.04.sh
 
 ---
 
+<a name="ubuntu-1604"></a>
+
+## Ubuntu 16.04 Installation Script
+
+A script to install BookStack on a fresh instance of Ubuntu 16.04 is available. This script is ONLY FOR A FRESH OS, It will install Nginx, MySQL 5.7 & PHP7 and could OVERWRITE any existing web setup on the machine. It also does not set up mail settings or configure system security so you will have to do those separately. You can use the script as a reference if you're installing on a non-fresh machine.
+
+[Link to installation script](https://github.com/BookStackApp/devops/blob/master/scripts/installation-ubuntu-16.04.sh)
+
+#### Running the Script
+
+```bash
+# Ensure you have read the above information about what this script does before executing these commands.
+
+# Download the script
+wget https://raw.githubusercontent.com/BookStackApp/devops/master/scripts/installation-ubuntu-16.04.sh
+
+# Make it executable
+chmod a+x installation-ubuntu-16.04.sh
+
+# Run the script with admin permissions
+sudo ./installation-ubuntu-16.04.sh
+```
+
+---
+
 <a name="community"></a>
 
 ## Community Guides