LAMP/lamp/apache/conf.sh

15 lines
754 B
Bash
Raw Normal View History

2021-07-05 21:50:02 +00:00
#!/bin/bash
clear
echo "# ===================================================================== #"
echo "# L A M P - S t a n d"
echo "# ===================================================================== #"
echo "# Editing config files for Apache Virtualhosts"
echo "# --------------------------------------------------------------------- #"
echo "# EXISTING FILES IN /etc/apache2/sites-available"
echo "# --------------------------------------------------------------------- #"
sudo ls /etc/apache2/sites-available
echo "# --------------------------------------------------------------------- #"
read -p "Enter filename: " apache_file
sudo nano /etc/apache2/sites-available/$apache_file.conf
sudo sudo service apache2 reload