You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
#!/bin/bash
|
|
# version 1.0 for LampOnMac 1.0 and MacOS 10.9
|
|
# created by PavelBelyaev 2014
|
|
#config
|
|
d_prefix=".loc"
|
|
vh_prefix="200-"
|
|
default_vh_file="100-default"
|
|
d_www="/www"
|
|
s_h="start auto web"
|
|
e_h="end auto web"
|
|
hf="/etc/hosts"
|
|
sites_enabled_path="/etc/apache2/sites-enabled"
|
|
#end-config
|
|
|
|
|
|
if [ ! -f $sites_enabled_path/$default_vh_file ]; then echo "Нет шаблона Vhost"; exit; fi
|
|
|
|
|
|
rm $sites_enabled_path/$vh_prefix* #удаляем vhost конфиги пользовательских сайтов
|
|
sed -ie "/\#$s_h/,/\#$e_h/ d" $hf #удаляем из файла hosts строки, созданные раннее скриптом
|
|
echo '#'$s_h>>$hf;cd $d_www
|
|
ls -d */|sed -e '/^.*localhost.*$/ d;s|/$||g'|while read l;do
|
|
echo "127.0.0.1 $l$d_prefix">>$hf
|
|
sed -e "/ServerName.*\$/d;/ServerAlias.*\$/d;s|DocumentRoot.*|DocumentRoot $d_www/$l|;s|<Directory.*|<Directory $d_www/$l>|" "$sites_enabled_path/$default_vh_file" | sed -e "/<V.*/ a\
|
|
ServerName $l$d_prefix
|
|
"|sed -e "/ServerName.*\$/ a\
|
|
ServerAlias www.$l$d_prefix" > "$sites_enabled_path/$vh_prefix$l$d_prefix"
|
|
done
|
|
echo '#'$e_h>>$hf
|