diff --git a/community/installation-guides/panel/ubuntu1804.md b/community/installation-guides/panel/ubuntu1804.md index ada2abf5..7cb14e55 100644 --- a/community/installation-guides/panel/ubuntu1804.md +++ b/community/installation-guides/panel/ubuntu1804.md @@ -1,14 +1,14 @@ # Ubuntu 18.04 -In this guide we will install Pterodactyl v0.7.X — including all of it's dependencies — and configure our webserver to serve it using SSL. +In this guide we will install Pterodactyl v1.X — including all of it's dependencies — and configure our webserver to serve it using SSL. [[toc]] ::: tip -This guide is based off the [official installation documentation](/panel/getting_started.md) but is tailored specifically for Ubuntu 18.04. +This guide is based off the [official installation documentation](/panel/1.0/getting_started.md) but is tailored specifically for Ubuntu 18.04. ::: ## Install Requirements -We will first begin by installing all of Pterodactyl's [required](/panel/getting_started.md#dependencies) dependencies. +We will first begin by installing all of Pterodactyl's [required](/panel/1.0/getting_started.md#dependencies) dependencies. ### MariaDB ```bash @@ -23,13 +23,13 @@ systemctl start mariadb systemctl enable mariadb ``` -### PHP 7.2 +### PHP 7.4 ```bash ## Get apt updates apt update -y -## Install PHP 7.2 -apt install -y php7.2 php7.2-cli php7.2-gd php7.2-mysql php7.2-pdo php7.2-mbstring php7.2-tokenizer php7.2-bcmath php7.2-xml php7.2-fpm php7.2-curl php7.2-zip +## Install PHP 7.4 +apt install -y php7.4 php7.4-cli php7.4-gd php7.4-mysql php7.4-pdo php7.4-mbstring php7.4-tokenizer php7.4-bcmath php7.4-xml php7.4-fpm php7.4-curl php7.4-zip ``` ### Nginx @@ -94,19 +94,19 @@ The default php-fpm configuration is fine to use and can be started and then ena commands below. ```bash -systemctl enable php7.2-fpm -systemctl start php7.2-fpm +systemctl enable php7.4-fpm +systemctl start php7.4-fpm ``` ### Nginx Please check our [tutorial](/tutorials/creating_ssl_certificates.md) on generating SSL certificates for more information. #### SSL Configuration -<<< @/.snippets/webservers/nginx.conf{5,11,26-27} +<<< @/.snippets/webservers/nginx-php7.4.conf{5,11,26-27} ### Redis Setup The default Redis install is perfectly fine for the panel. If you have Redis already in use you may want to look into [running another Redis instance](https://community.pivotal.io/s/article/How-to-setup-and-run-multiple-Redis-server-instances-on-a-Linux-host). ## Installing the Panel -Excellent, we now have all of the required dependencies installed and configured. From here, follow the [official Panel installation documentation](/panel/getting_started.md#download-files). +Excellent, we now have all of the required dependencies installed and configured. From here, follow the [official Panel installation documentation](/panel/1.0/getting_started.md#download-files).