Spaces:
Running
Running
| # 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 | |