bezpieczenstwo-w-chmurze/skrypty/uam-bwc-ec2-httpd.sh

6 lines
152 B
Bash
Raw Permalink Normal View History

2024-10-04 14:51:59 +02:00
#!/bin/bash
apt-get update -y
apt-get install -y apache2
systemctl start apache2
systemctl enable apache2
echo "Hello World!" > /var/www/html/index.html