28 lines
586 B
Bash
28 lines
586 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# vhost-stack
|
||
|
# https://git.stack-source.com/msb/vhost-stack
|
||
|
# MIT License Copyright (c) 2021 Matthew Saunders Brown
|
||
|
|
||
|
# load config
|
||
|
source /usr/local/etc/vhost.conf || echo "ERROR: Either you do not have vhost user permissions or the config file is missing." && exit
|
||
|
|
||
|
if [ ! -f /etc/varnish/sites.d/example.com.vcl ]; then
|
||
|
|
||
|
echo "ERROR: example.vlc does not exist"
|
||
|
exit 1
|
||
|
|
||
|
fi
|
||
|
|
||
|
sitesArray=(`ls -1 /etc/varnish/sites.d/`)
|
||
|
truncate -s 0 /etc/varnish/sites.vcl
|
||
|
|
||
|
for site in "${sitesArray[@]}"
|
||
|
do
|
||
|
|
||
|
echo include \"sites.d/$site\"\; >> /etc/varnish/sites.vcl
|
||
|
|
||
|
done
|
||
|
|
||
|
exit 0
|