Spaces:
Running
Running
File size: 373 Bytes
4e9eb6a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/bash
# Apache setup script
sudo apt-get update
sudo apt-get install -y apache2
# Basic Apache config
cat > /etc/apache2/sites-available/000-default.conf << 'EOF'
<VirtualHost *:80>
DocumentRoot /var/www/html
<Directory /var/www/html>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
EOF
sudo systemctl restart apache2
|