Last active
November 19, 2019 15:20
-
-
Save linuxfemale/8955b06c53f37683f7ae0b84e5985a0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Video Tutorial: | |
https://www.youtube.com/watch?v=XVqg-tJem8g | |
sudo apt-get update | |
sudo apt-get install apache2 | |
sudo service apache2 status | |
sudo ufw app list | |
sudo ufw app info “Apache Full” | |
sudo apt-get install mysql-server | |
sudo apt-get install php libapache2-mod-php php-mysql | |
sudo apt-get install php-cli | |
sudo nano /var/www/html/info.php | |
# insert the code. Press ctrl+x, press "y" and hit enter | |
<?php | |
phpinfo (); | |
?> | |
# brows 0.0.0.0/info.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment