Advertisement
Guest User

Untitled

a guest
May 20th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/sh
  2. # Basic Ubuntu/Apache setup
  3. # Update Ubuntu
  4. sudo apt-get update;
  5. sudo apt-get -y upgrade;
  6.  
  7. # Install Apache
  8. sudo apt-get -y install apache2 php libapache2-mod-php7.0 php-mbstring php7.0-curl php7.0-zip php7.0-json php7.0-xml imagemagick unzip wget;
  9.  
  10. # Some other stuff
  11. chown -Rf www-data:www-data /var/www/html;
  12. sudo a2enmod rewrite;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement