Added Basic OS Steps for Debian 11

This commit is contained in:
mattronix 2023-11-02 16:20:57 +00:00
parent 855ce65559
commit 9996629e07

View file

@ -64,3 +64,20 @@ If you discover a security vulnerability within Laravel, please send an e-mail t
## License ## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). 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