-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathrun.sh
217 lines (165 loc) · 7.34 KB
/
run.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/bin/bash
OutputLog ()
{
echo "=> Adding environmental variables:"
echo " NODE_ENVIRONMENT: ${NODE_ENVIRONMENT}"
if [[ -z "${LOG_TOKEN}" ]]; then
# $LOG_TOKEN is set on container creation
echo " env LOG_TOKEN is not set."
else
echo " Log Key: ${LOG_TOKEN}"
fi
echo " Postfix Outgoing SMTP (${SMTP_HOST}): ${SASL_USER}:${SASL_PASS}"
}
# output logs to logentries.com
cat <<EOF > /etc/rsyslog.d/logentries.conf
\$template Logentries,"${LOG_TOKEN} %HOSTNAME% %syslogtag%%msg%\n"
*.* @@api.logentries.com:10000;Logentries
EOF
if [ ! -d /data/www/public_html ]; then
# Create default web directory
mkdir -p /data/www/public_html
mv /opt/app/*.png /data/www/public_html/
fi
# Move default coming soon page... at the start of every instance run
mv /opt/app/*.php /data/www/public_html/
if [ ! -d /data/apache2 ]; then
# Create directories for logs and ssl certificates
mkdir -p /data/apache2/{logs,ssl,sites-enabled}
# Create diectory for any pear libaries
mkdir -p /data/pear
touch /data/pear/empty
# Strict permissions on Apache conf files
cd /etc/apache2/ && chmod 700 *
# Set the 'ServerName' directive globally
echo ServerName localhost >> /etc/apache2/conf-enabled/servername.conf
# Customizable Apache configuration file(s)
mv /opt/app/*.conf /data/apache2/sites-enabled/
# Move needed certificates into place
mv -f /opt/app/ssl/* /data/apache2/ssl
# Disable the default website
rm /etc/apache2/sites-enabled/000-default.conf
fi
#####
#
# Edit files on the container, improving preformance
# Modify php.ini for each build
# Check for proper environment
# Route mail to SMTP queuing servers
#
#####
if [ ! -f /etc/php/8.3/apache2/build ]; then
# Tweak Apache Build
sed -i 's|;include_path = ".:/usr/share/php"|include_path = ".:/usr/share/php:/data/pear"|g' /etc/php/8.3/apache2/php.ini
sed -i 's/variables_order.*/variables_order = \"EGPCS\"/g' /etc/php/8.3/apache2/php.ini
sed -i 's/IncludeOptional sites-enabled\/\*.conf/IncludeOptional \/data\/apache2\/sites-enabled\/*.conf/' /etc/apache2/apache2.conf
sed -i 's|;error_log = php_errors.log|error_log = /data/apache2/logs/error_log|g' /etc/php/8.3/apache2/php.ini
echo "extension=mcrypt.so" > /etc/php/8.3/apache2/conf.d/mcrypt.ini
# Setup Redis
echo "extension=redis.so" > /etc/php/8.3/mods-available/redis.ini
ln -sf /etc/php/8.3/mods-available/redis.ini /etc/php/8.3/cli/conf.d/20-redis.ini
ln -sf /etc/php/8.3/mods-available/redis.ini /etc/php/8.3/apache2/conf.d/20-redis.ini
# Update the PHP.ini file, enable <? ?> tags
sed -i 's|short_open_tag = Off|short_open_tag = On|g' /etc/php/8.3/apache2/php.ini
# Sessions & garbage collection
sed -i 's|;session.save_path = "/var/lib/php5"|session.save_path = "/tmp"|g' /etc/php/8.3/apache2/php.ini
sed -i 's|session.gc_probability = 0|session.gc_probability = 1|g' /etc/php/8.3/apache2/php.ini
# Update Apache / PHP Config
sed -i 's|max_execution_time = 30|max_execution_time = 300|g' /etc/php/8.3/apache2/php.ini
sed -i 's|memory_limit = 128M|memory_limit = -1|g' /etc/php/8.3/apache2/php.ini
sed -i 's|upload_max_filesize = 2M|upload_max_filesize = 1000M|g' /etc/php/8.3/apache2/php.ini
sed -i 's|post_max_size = 8M|post_max_size = 1000M|g' /etc/php/8.3/apache2/php.ini
sed -i 's|max_input_time = 60|max_input_time = 300|g' /etc/php/8.3/apache2/php.ini
# Update CLI Config
sed -i 's|memory_limit = 128M|memory_limit = -1|g' /etc/php/8.3/cli/php.ini
sed -i 's|upload_max_filesize = 2M|upload_max_filesize = 1000M|g' /etc/php/8.3/cli/php.ini
sed -i 's|post_max_size = 8M|post_max_size = 1000M|g' /etc/php/8.3/cli/php.ini
# Add build file to remove duplicate script execution
echo 1 > /etc/php/8.3/apache2/build
if [[ -z "${NODE_ENVIRONMENT}" ]]; then
# $NODE_ENVIRONMENT is set on container creation
echo " env NODE_ENVIRONMENT is not set, Apache is not configured correctly."
else
if [ "$NODE_ENVIRONMENT" == 'dev' ]; then
# Tweak Apache build
sed -i 's|\[PHP\]|\[PHP\] \nIS_LIVE=0 \nIS_DEV=1 \nNODE_ENVIRONMENT=dev \n;The IS_DEV is set for testing outside of DEV environments ie: test.domain.tld|g' /etc/php/8.3/apache2/php.ini
# Log errors into log files
sed -i 's/error_reporting = .*$/error_reporting = E_ALL/' /etc/php/8.3/apache2/php.ini
# Default is 1024 and 0 allows to not apply any maximum length at all
sed -i 's|log_errors_max_len = 1024|log_errors_max_len = 0|g' /etc/php/8.3/apache2/php.ini
fi
if [ "$NODE_ENVIRONMENT" == 'production' ]; then
# Tweak Apache build
sed -i 's|\[PHP\]|\[PHP\] \nIS_LIVE=1 \nIS_DEV=0 \nNODE_ENVIRONMENT=production \n;The IS_DEV is set for testing outside of DEV environments ie: test.domain.tld|g' /etc/php/8.3/apache2/php.ini
# Log errors into log files
sed -i 's/error_reporting = .*$/error_reporting = E_ERROR | E_WARNING | E_PARSE/' /etc/php/8.3/apache2/php.ini
fi
fi
fi
cat <<EOT >> /etc/apache2/apache2.conf
# https://www.tecmint.com/apache-performance-tuning/
<IfModule mpm_event_module>
StartServers 3
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxRequestWorkers 30
MaxConnectionsPerChild 1000
</IfModule>
EOT
cat <<EOT >> /etc/apache2/mods-available/pagespeed.conf
# https://www.howtoforge.com/how-to-install-and-configure-mod-pagespeed-module-with-apache-on-ubuntu-1804/
<Location /pagespeed_admin>
Order allow,deny
Allow from localhost
Allow from 127.0.0.1
Allow from 35.232.187.229
Allow from 65.31.226.148
SetHandler pagespeed_admin
</Location>
<Location /pagespeed_global_admin>
Order allow,deny
Allow from localhost
Allow from 127.0.0.1
Allow from 35.232.187.229
Allow from 65.31.226.148
SetHandler pagespeed_global_admin
</Location>
EOT
# Postfix uses a DEV test mail server which holds email(s) from being released into the REAL Internet
postconf -e "compatibility_level=2"
postconf -e "myhostname=dev-build.htmlgraphic.com"
postconf -e 'mail_spool_directory="/var/spool/mail/"'
postconf -e 'mydestination="localhost.localdomain localhost"'
postconf -e "relayhost=[${SMTP_HOST}]:587"
postconf -e "smtp_sasl_auth_enable=yes"
postconf -e "smtp_sasl_password_maps=static:${SASL_USER}:${SASL_PASS}"
postconf -e "smtp_sasl_security_options=noanonymous"
postconf -e "smtp_sasl_tls_security_options = noanonymous"
postconf -e "smtp_tls_security_level=encrypt"
postconf -e "header_size_limit=4096000"
postconf -e "inet_protocols=ipv4"
# Postfix is not using /etc/resolv.conf is because it is running inside a chroot jail, needs its own copy.
cp /etc/resolv.conf /var/spool/postfix/etc/resolv.conf
# mailname should match the system hostname
cp /etc/hostname /etc/mailname
# These are required when postfix runs chrooted
#
[[ -z $(ls /var/spool/postfix/etc) ]] && {
for n in hosts localtime nsswitch.conf resolv.conf services
do
cp /etc/$n /var/spool/postfix/etc
done
}
# These also need setgid to stop 'postfix check' worrying.
#
[[ -z $(find /usr/sbin/ -name postqueue -o -name postdrop -perm -2555) ]] && \
chmod g+s /usr/sbin/post{drop,queue}
# Display system credentials for build testing
#
OutputLog
# Spin everything up
# http://stackoverflow.com/questions/34630571/docker-env-variables-not-set-while-log-via-shell
env | grep NODE_ENVIRONMENT >> /etc/environment && /usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf
#/bin/bash -c env | grep NODE_ENVIRONMENT >> /etc/environment && /usr/bin/supervisord -n -c /etc/supervisor/conf.d/supervisord.conf