9 lines
187 B
Bash
9 lines
187 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#Instalacja Apache i MC
|
||
|
sudo apt -y install apache2
|
||
|
|
||
|
#Instalacja PHP
|
||
|
sudo apt -y install php php-{cli,mysql,json,opcache,xml,mbstring,gd,curl}
|
||
|
|
||
|
sudo systemctl restart apache2
|