forked from microsoft/azure-redcap-paas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
startup.sh
32 lines (25 loc) · 1.05 KB
/
startup.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
#!/bin/bash
a2enmod headers
echo "Header set MyHeader \"%D %t"\" >> /etc/apache2/apache2.conf
echo "Header always unset \"X-Powered-By\"" >> /etc/apache2/apache2.conf
echo "Header unset \"X-Powered-By\"" >> /etc/apache2/apache2.conf
####################################################################################
#
# Install some utilities for REDCap to work properly
#
####################################################################################
apt-get update
apt-get install -y sendmail cron
####################################################################################
#
# Configure REDCap cronjob to run every minute
#
####################################################################################
echo "* * * * * /usr/local/bin/php /home/site/wwwroot/cron.php > /dev/null" >> /etc/crontab
service cron start
####################################################################################
#
# Start Apache
#
####################################################################################
/usr/sbin/apache2ctl -D FOREGROUND