-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver-stack-setup.sh
More file actions
437 lines (339 loc) · 10.3 KB
/
server-stack-setup.sh
File metadata and controls
437 lines (339 loc) · 10.3 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#!sbin/bash
RED='\033[0;31m'
NC='\033[0m' # No Color
echo $RED "
INSTALLATION PRE-REQUISITES
0. BE ROOT
1. Install apache2: NO need to configure
2. Install mysql-server: Set Root password
3. Install phpmyadmin and secure it
4. Create users and databases for both dev and staging
5. Ensure the EDLFB certificates and key are in the /root folder
WOULD YOU LIKE TO INSTALL THE REQUIRED PACKAGES? (yes/no/exit)
" $NC
read prereq
case $prereq in
n|no|No|nO|NO|non|Non|nOn|noN|NOn|NoN|NON) break ;;
y|yes|Y|Yes|YES|YEs|YeS|yEs|yES|yeS|Oui|oui) apt-get update
apt-get install -y apache2
apt-get install -y mysql-server
apt-get install -y phpmyadmin
apt-get install -y php5-curl ;;
*) exit
esac
#SFTP USER
echo $RED "
LET'S START BY CREATING THE SFTP USER AND IT'S PASSWORD
" $NC
sudo adduser webdeploy
###### DELETE THIS SECTION BEFORE RUNNING ####
#sudo rm -R /var/www/vhosts/*
#sudo rm -R /etc/apache2/sites-available/*.conf
##############################################
#VHOSTS
echo $RED "
PLEASE ENTER A VALUE FOR THE FOLLOWING VHOSTS: (Ex, mysite-dev.edlfb.net)
" $NC
echo $RED "
DEV: " $NC
read dev
echo $RED "
STAGING: " $NC
read staging
echo $RED " The dev environment is: $dev"
echo $RED " And the staging environment is: $staging"
echo $RED "
Is this correct? (yes/no)
" $NC
read answer
case $answer in
y|yes|Y|Yes|YES|YEs|YeS|yEs|yES|yeS|Oui|oui) break ;;
*) echo $RED " Please enter value for the following vhosts"
echo " dev: " $NC
read dev
echo " staging: " $NC
read staging
echo $RED " The dev environment is: $dev"
echo $RED " The staging environment is: $staging"
esac
echo $RED "
CREATING VHOSTS IN /var/www/vhosts
" $NC
mkdir -p /var/www/vhosts/$dev
echo $RED "
CREATED /var/www/vhosts/$dev
" $NC
mkdir -p /var/www/vhosts/$staging
echo $RED "
CREATED /var/www/vhosts/$staging
" $NC
sleep 2
#APACHE
echo $RED "
CREATING APACHE CONFIG FILES
" $NC
touch /etc/apache2/sites-available/$dev.conf
touch /etc/apache2/sites-available/$staging.conf
echo " <VirtualHost *:80>
ServerName $dev
DocumentRoot /var/www/vhosts/$dev
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
<Directory /var/www/vhosts/$dev>
Header always set X-Xss-Protection \"1; mode=block\"
Header always set X-Frame-Options SAMEORIGIN
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
AuthType Basic
Order allow,deny
AuthName \"Preview\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
</Directory>
<files xmlrpc.php>
Order allow,deny
Deny from all
</files>
ErrorLog /var/log/apache2/$dev-error.log
CustomLog /var/log/apache2/$dev-access.log combined
LogLevel warn
</VirtualHost>
<VirtualHost *:443>
ServerName $dev
DocumentRoot /var/www/vhosts/$dev
<Directory /var/www/vhosts/$dev>
Header always set X-Xss-Protection \"1; mode=block\"
Header always set X-Frame-Options SAMEORIGIN
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
AuthType Basic
Order allow,deny
AuthName \"Preview\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
</Directory>
<files xmlrpc.php>
Order allow,deny
Deny from all
</files>
ErrorLog /var/log/apache2/$dev-error.log
CustomLog /var/log/apache2/$dev-access.log combined
LogLevel warn
SSLEngine on
SSLCertificateFile /root/edlfb16.crt
SSLCertificateKeyFile /root/edlfb16.key
SSLCertificateChainFile /root/edlfb-ca.crt
<FilesMatch \"\.(cgi|shtml|phtml|php)$\">
SSLOptions +StdEnvVars
</FilesMatch>
BrowserMatch \"MSIE [2-6]\" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
BrowserMatch \"MSIE [17-9]\" ssl-unclean-shutdown
</VirtualHost>
" >> /etc/apache2/sites-available/$dev.conf
cat /etc/apache2/sites-available/$dev.conf
echo $RED "
DEV CONFIG FILE CREATED
" $NC
sleep 2
echo " <VirtualHost *:80>
ServerName $staging
DocumentRoot /var/www/vhosts/$staging
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
<Directory /var/www/vhosts/$staging>
Header always set X-Xss-Protection \"1; mode=block\"
Header always set X-Frame-Options SAMEORIGIN
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
AuthType Basic
Order allow,deny
AuthName \"Preview\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
</Directory>
<files xmlrpc.php>
Order allow,deny
Deny from all
</files>
ErrorLog /var/log/apache2/$staging-error.log
CustomLog /var/log/apache2/$staging-access.log combined
LogLevel warn
</VirtualHost>
<VirtualHost *:443>
ServerName $staging
DocumentRoot /var/www/vhosts/$staging
<Directory /var/www/vhosts/$staging>
Header always set X-Xss-Protection \"1; mode=block\"
Header always set X-Frame-Options SAMEORIGIN
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
AuthType Basic
Order allow,deny
AuthName \"Preview\"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
</Directory>
<files xmlrpc.php>
Order allow,deny
Deny from all
</files>
ErrorLog /var/log/apache2/$staging-error.log
CustomLog /var/log/apache2/$staging-access.log combined
LogLevel warn
SSLEngine on
SSLCertificateFile /root/edlfb16.crt
SSLCertificateKeyFile /root/edlfb16.key
SSLCertificateChainFile /root/edlfb-ca.crt
<FilesMatch \"\.(cgi|shtml|phtml|php)$\">
SSLOptions +StdEnvVars
</FilesMatch>
BrowserMatch \"MSIE [2-6]\" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
BrowserMatch \"MSIE [17-9]\" ssl-unclean-shutdown
</VirtualHost>
" >> /etc/apache2/sites-available/$staging.conf
cat /etc/apache2/sites-available/$staging.conf
echo $RED "
STAGING CONFIG FILE CREATED
" $NC
echo $RED "
ENTER HTPASSWD CREDENTIALS: (THIS WILL BE THE HASHED preview:skbf8*fbsjhv&bhkbgs7.)
" $NC
read creds
echo " $creds" >> /etc/apache2/.htpasswd
sleep 2
echo $RED "
ENABLING THE DEV AND STAGING SITES
" $NC
sudo a2ensite $dev.conf
sudo a2ensite $staging.conf
echo $RED "
DISABLING DEFAULT SITES
" $NC
sudo a2dissite 000-default.conf
sudo a2dissite default-ssl.conf
echo $RED "
SETTING SERVER NAME
" $NC
echo "ServerName $dev
# HTTP SLOW CONTROL
MaxRequestWorkers 90
LimitRequestLine 4094
LimitRequestBody 20971520
LimitRequestFieldSize 4094
LimitRequestFields 50
" >> /etc/apache2/apache2.conf
echo $RED "
ENABLING APACHE2 MODULES
" $NC
sudo a2enmod ssl
sudo a2enmod rewrite
sudo a2enmod headers
sudo a2enmod expires
sudo php5enmod mcrypt
sudo service apache2 restart
#DATABASES
echo $RED "
CREATING DATABASES AND DB USERS
ENTER THE DEV DB USER: " $NC
read devuser
echo $RED "
ENTER THE DEV DB USER'S PASSWORD: " $NC
read devpass
echo $RED "
ENTER THE STAGING DB USER: " $NC
read staginguser
echo $RED "
ENTER THE STAGING DB USER'S PASSWORD: " $NC
read stagingpass
echo $RED "
ENTER THE DB HOST (In most cases it would be 'localhost'): " $NC
read dbhost
mysql -u root -p<< EOF
create database $devuser;
create user '$devuser'@'$dbhost' identified by '$devpass';
grant usage on *.* to $devuser@$dbhost identified by '$devpass';
grant all privileges on $devuser.* to $devuser@$dbhost ;
create database $staginguser;
create user '$staginguser'@'$dbhost' identified by '$stagingpass';
grant usage on *.* to $staginguser@$dbhost identified by '$stagingpass';
grant all privileges on $staginguser.* to $staginguser@$dbhost ;
flush privileges;
EOF
#WORDPRESS
echo $RED "
FETCHING PRE-REQUISITES TO INSTALL WORDPRESS
" $NC
sudo apt-get update
sudo apt-get install -y wget
sudo apt-get install -y zip
sudo apt-get install -y unzip
echo $RED "
INSTALLING LATEST WORDPRESS
" $NC
cd /var/www/
wget https://wordpress.org/latest.zip
unzip latest.zip
sudo rm latest.zip
cp -R wordpress/* /var/www/vhosts/$dev
cp -R wordpress/* /var/www/vhosts/$staging
sudo rm /var/www/vhosts/$dev/readme.html
sudo rm /var/www/vhosts/$staging/readme.html
sudo rm -R /var/www/vhosts/$dev/wp-content/themes/*
sudo rm -R /var/www/vhosts/$staging/wp-content/themes/*
sudo rm -R /var/www/vhosts/$dev/wp-content/plugins/*
sudo rm -R /var/www/vhosts/$staging/wp-content/plugins/*
sudo rm -R /var/www/wordpress/
#WP-CLI
echo $RED "
INSTALLING WP-CLI
" $NC
cd /var/www/vhosts/$dev/
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
sudo chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
echo $RED "
ASSIGNING PROPER PERMISSIONS TO VHOSTS
" $NC
sudo chown -R www-data:www-data /var/www/vhosts/
sudo chmod -R 755 /var/www/vhosts/
sudo chown -R webdeploy /var/www/vhosts/$dev/wp-content
sudo chown -R webdeploy /var/www/vhosts/$staging/wp-content
sudo chmod -R 775 /var/www/vhosts/$dev/wp-content
sudo chmod -R 775 /var/www/vhosts/$staging/wp-content
sudo chown root:root /var/www/vhosts/$dev/xmlrpc.php
sudo chmod 700 /var/www/vhosts/$dev/xmlrpc.php
sudo chown root:root /var/www/vhosts/$staging/xmlrpc.php
sudo chmod 700 /var/www/vhosts/$staging/xmlrpc.php
ls -la /var/www/vhosts/
#UFW
echo $RED "
SETTIGN UP BASIC UFW RULES
" $NC
sudo ufw enable
ufw default deny incoming
ufw default allow outgoing
sudo ufw allow 80
sudo ufw allow 443
echo $RED "
DOES THE SERVER NEED TO SEND MAIL? (yes/no)
" $NC
read mail
case $mail in
n|no|No|nO|NO|non|Non|nOn|noN|NOn|NoN|NON) sudo ufw deny out 25 ;;
y|yes|Y|Yes|YES|YEs|YeS|yEs|yES|yeS|Oui|oui) break ;;
*) break ;;
esac
echo $RED "
AND THAT'S IT!
Now please verify the settings quickly and navigate to $dev and $staging to complete the WP quick install
" $NC