Added Basic OS Steps for Debian 11
This commit is contained in:
parent
855ce65559
commit
9996629e07
1 changed files with 17 additions and 0 deletions
17
README.md
17
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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue