Installations Serveur# Serveur HTTP de base# Bash 1 2 3 4 5 6 7 8 9 10#!/bin/bash yum update -y yum install httpd -y service httpd start chkconfig httpd on cd /var/www/html echo '<html><h1>Welcome to o7 Test Page</h1></html>' > index.html echo '<html><h1>I am Healthy !</h1></html>' > health.html Serveur HTTP avec PHP# Bash 1 2 3 4 5 6 7 8 9 10 11 12#!/bin/bash yum update -y yum install httpd24 php56 -y yum install git -y service httpd start chkconfig httpd on cd /var/www/html echo '<?php phpinfo();?>' > test.php git clone https://github.com/acloudguru/s3