From 9996629e076798b7169d343eb2313b0a38a856aa Mon Sep 17 00:00:00 2001 From: mattronix Date: Thu, 2 Nov 2023 16:20:57 +0000 Subject: [PATCH] Added Basic OS Steps for Debian 11 --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 3ed385a..3d4281f 100644 --- a/README.md +++ b/README.md @@ -64,3 +64,20 @@ If you discover a security vulnerability within Laravel, please send an e-mail t ## License The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). + + +# Linux Install + +## Debian 11 +sudo apt update +apt-get install apache2 +sudo apt install lsb-release apt-transport-https ca-certificates software-properties-common -y +sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg +sudo sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' +sudo apt update +sudo apt install php8.2 -y +php -v +sudo apt install apache2 libapache2-mod-php8.2 +sudo systemctl restart apache2 + +