-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathinstall-apache.sh
executable file
·59 lines (42 loc) · 1.22 KB
/
install-apache.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
apt-get -yq install apache2-mpm-worker
a2enmod actions dir rewrite expires headers
a2dismod status cgid autoindex
###
GREPOUT=`grep "ServerName" /etc/apache2/conf-available/custom.conf`
if [ -z "$GREPOUT" ];
then
echo "ServerName localhost" >> /etc/apache2/conf-available/custom.conf
ln -s /etc/apache2/conf-available/custom.conf /etc/apache2/conf-enabled/custom.conf
fi
###
ln -s /etc/apache2/conf-available /etc/apache2/ca
ln -s /etc/apache2/conf-enabled /etc/apache2/ce
ln -s /etc/apache2/sites-available /etc/apache2/sa
ln -s /etc/apache2/sites-enabled /etc/apache2/se
ln -s /etc/apache2/mods-available /etc/apache2/ma
ln -s /etc/apache2/mods-enabled /etc/apache2/me
###
WWWLOGS='/etc/logrotate.d/wwwlogs'
if [ ! -f $WWWLOGS ];
then
cat > $WWWLOGS << EOF
/var/www/*/logs/*.log {
weekly
missingok
rotate 26
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
if [ -f "\`. /etc/apache2/envvars ; echo \${APACHE_PID_FILE:-/var/run/apache2.pid}\`" ]; then
/etc/init.d/apache2 reload > /dev/null
fi
endscript
}
EOF
fi
###
service apache2 restart