16 lines
471 B
Bash
16 lines
471 B
Bash
#!/bin/bash
|
|
apt install curl apache2 git -y
|
|
cd /var/www/html/
|
|
git clone https://git.moelle.space/hxcde/mylinks.git
|
|
cat <<EOF | grep 'b' | tee mylinks.conf
|
|
foo
|
|
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html/mylinks/
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
EOF
|
|
mv mylinks.conf /etc/apache2/sites-available/
|
|
a2ensite mylinks
|
|
a2dissite 000-default.conf |