Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
431 B

  1. #!/bin/bash
  2. sudo apt update
  3. sudo apt upgrade -y
  4. sudo apt install apache2 php
  5. sudo apt install php
  6. sudo systemctl restart apache2
  7. sudo chown -R ubuntu:ubuntu /var/www/html
  8. rm /var/www/html/index.html
  9. echo "
  10. <!DOCTYPE html>
  11. <html lang='fr'>
  12. <head>
  13. <meta charset='UTF-8'>
  14. <meta name='viewport' content='width=device-width, initial-scale=1.0'>
  15. <title>PHP Info</title>
  16. </head>
  17. <body>
  18. <?php phpinfo(); ?>
  19. </body>
  20. </html>