Skip to content

Instantly share code, notes, and snippets.

@linuxfemale
Last active November 19, 2019 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxfemale/8955b06c53f37683f7ae0b84e5985a0d to your computer and use it in GitHub Desktop.
Save linuxfemale/8955b06c53f37683f7ae0b84e5985a0d to your computer and use it in GitHub Desktop.
#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