forked from digitoimistodude/macos-lemp-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
363 lines (317 loc) · 10.4 KB
/
install.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
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
#!/bin/bash
# Install script for LEMP on OS X - by ronilaukkarinen, Evgeni Obukhovski.
# Helpers:
currentfile=`basename $0`
txtbold=$(tput bold)
boldyellow=${txtbold}$(tput setaf 3)
boldgreen=${txtbold}$(tput setaf 2)
boldwhite=${txtbold}$(tput setaf 7)
yellow=$(tput setaf 3)
red=$(tput setaf 1)
green=$(tput setaf 2)
white=$(tput setaf 7)
txtreset=$(tput sgr0)
LOCAL_IP=$(ifconfig | grep -Eo "inet (addr:)?([0-9]*\.){3}[0-9]*" | grep -Eo "([0-9]*\.){3}[0-9]*" | grep -v "127.0.0.1")
YEAR=$(date +%y)
echo "${yellow}Getting dependencies.${txtreset}"
xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew update && brew upgrade
echo "${boldgreen}Dependencies installed and up to date.${txtreset}"
echo "${yellow}Installing nginx.${txtreset}"
brew install nginx
brew services start nginx
curl -IL http://127.0.0.1:8080
echo "${boldgreen}nginx installed and running.${txtreset}"
echo "${yellow}Setting up nginx.${txtreset}"
sudo chmod -R 775 /usr/local/etc/nginx
sudo ln -sfnv /usr/local/etc/nginx /etc/nginx
sudo mkdir -p /etc/nginx/global
sudo mkdir -p /usr/local/etc/nginx
sudo mkdir -p /etc/nginx/sites-enabled
sudo mkdir -p /etc/nginx/sites-available
sudo mkdir -p /etc/nginx/global
sudo chmod -R 775 /etc/nginx/global
sudo chmod -R 775 /usr/local/etc/nginx
sudo chmod -R 775 /etc/nginx/sites-enabled
sudo chmod -R 775 /etc/nginx/sites-available
sudo chmod -R 775 /etc/nginx/global
sudo echo "worker_processes 8;
events {
multi_accept on;
accept_mutex on;
worker_connections 1024;
}
http {
upstream fastcgi_backend {
server 127.0.0.1:9000;
}
##
# Optimization
##
sendfile on;
sendfile_max_chunk 512k;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 120;
keepalive_requests 100000;
types_hash_max_size 2048;
server_tokens off;
client_body_buffer_size 128k;
client_max_body_size 10m;
client_header_buffer_size 1k;
large_client_header_buffers 4 32k;
output_buffers 1 32k;
postpone_output 1460;
server_names_hash_max_size 1024;
#server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log off;
access_log /var/log/nginx/access.log combined;
error_log /var/log/nginx/error.log;
##
# Virtual Host Configs
##
include /etc/nginx/sites-enabled/*;
}" > "/etc/nginx/nginx.conf"
sudo mkdir -p /var/log/nginx
sudo touch /var/log/nginx/access.log
sudo chmod 777 /var/log/nginx/access.log
sudo touch /var/log/nginx/error.log
sudo chmod 777 /var/log/nginx/error.log
sudo echo "
server {
listen 80;
listen [::]:80;
server_name sample-magento.local;
#set \$MAGE_ROOT /Users/$USER/projects/sample-magento;
include global/magento.conf;
}" > "/etc/nginx/sites-available/sample-magento.conf"
sudo echo "root \$MAGE_ROOT/pub;
error_log /Users/$USER/projects/log/nginx-error.log;
#access_log /Users/$USER/projects/log/nginx-access.log;
index index.php;
autoindex off;
charset UTF-8;
error_page 404 403 = /errors/404.php;
# Deny access to sensitive files
location /.user.ini {
deny all;
}
# PHP entry point for setup application
location ~* ^/setup($|/) {
root \$MAGE_ROOT;
location ~ ^/setup/index.php {
fastcgi_pass fastcgi_backend;
fastcgi_param PHP_FLAG \"session.auto_start=off \n suhosin.session.cryptua=off\";
fastcgi_param PHP_VALUE \"memory_limit=756M \n max_execution_time=600\";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
include fastcgi_params;
}
location ~ ^/setup/(?!pub/). {
deny all;
}
location ~ ^/setup/pub/ {
add_header X-Frame-Options \"SAMEORIGIN\";
}
}
# PHP entry point for update application
location ~* ^/update($|/) {
root \$MAGE_ROOT;
location ~ ^/update/index.php {
fastcgi_split_path_info ^(/update/index.php)(/.+)$;
fastcgi_pass fastcgi_backend;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
fastcgi_param PATH_INFO \$fastcgi_path_info;
include fastcgi_params;
}
# Deny everything but index.php
location ~ ^/update/(?!pub/). {
deny all;
}
location ~ ^/update/pub/ {
add_header X-Frame-Options \"SAMEORIGIN\";
}
}
location / {
try_files \$uri \$uri/ /index.php\$is_args\$args;
}
location /pub/ {
location ~ ^/pub/media/(downloadable|customer|import|custom_options|theme_customization/.*\.xml) {
deny all;
}
alias \$MAGE_ROOT/pub/;
add_header X-Frame-Options \"SAMEORIGIN\";
}
location /static/ {
# Uncomment the following line in production mode
# expires max;
# Remove signature of the static files that is used to overcome the browser cache
location ~ ^/static/version {
rewrite ^/static/(version\d*/)?(.*)$ /static/\$2 last;
}
location ~* \.(ico|jpg|jpeg|png|gif|svg|js|css|swf|eot|ttf|otf|woff|woff2|html|json)$ {
add_header Cache-Control \"public\";
add_header X-Frame-Options \"SAMEORIGIN\";
expires +1y;
if (!-f \$request_filename) {
rewrite ^/static/(version\d*/)?(.*)$ /static.php?resource=\$2 last;
}
}
location ~* \.(zip|gz|gzip|bz2|csv|xml)$ {
add_header Cache-Control \"no-store\";
add_header X-Frame-Options \"SAMEORIGIN\";
expires off;
if (!-f \$request_filename) {
rewrite ^/static/(version\d*/)?(.*)$ /static.php?resource=\$2 last;
}
}
if (!-f \$request_filename) {
rewrite ^/static/(version\d*/)?(.*)$ /static.php?resource=\$2 last;
}
add_header X-Frame-Options \"SAMEORIGIN\";
}
location /media/ {
try_files \$uri \$uri/ /get.php\$is_args\$args;
location ~ ^/media/theme_customization/.*\.xml {
deny all;
}
location ~* \.(ico|jpg|jpeg|png|gif|svg|js|css|swf|eot|ttf|otf|woff|woff2)$ {
add_header Cache-Control \"public\";
add_header X-Frame-Options \"SAMEORIGIN\";
expires +1y;
try_files \$uri \$uri/ /get.php\$is_args\$args;
}
location ~* \.(zip|gz|gzip|bz2|csv|xml)$ {
add_header Cache-Control \"no-store\";
add_header X-Frame-Options \"SAMEORIGIN\";
expires off;
try_files \$uri \$uri/ /get.php\$is_args\$args;
}
add_header X-Frame-Options \"SAMEORIGIN\";
}
location /media/customer/ {
deny all;
}
location /media/downloadable/ {
deny all;
}
location /media/import/ {
deny all;
}
location /media/custom_options/ {
deny all;
}
location /errors/ {
location ~* \.xml$ {
deny all;
}
}
# PHP entry point for main application
location ~ ^/(index|get|static|errors/report|errors/404|errors/503|health_check)\.php$ {
try_files \$uri =404;
fastcgi_pass fastcgi_backend;
#fastcgi_buffers 1024 4k;
fastcgi_buffer_size 512k;
fastcgi_buffers 4 512k;
fastcgi_busy_buffers_size 1024k;
fastcgi_param PHP_FLAG \"session.auto_start=off \n suhosin.session.cryptua=off\";
fastcgi_param PHP_VALUE \"memory_limit=756M \n max_execution_time=180\";
fastcgi_read_timeout 600s;
fastcgi_connect_timeout 600s;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
include fastcgi_params;
}
gzip on;
gzip_disable \"msie6\";
gzip_comp_level 6;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_proxied any;
gzip_types
text/plain
text/css
text/js
text/xml
text/javascript
application/javascript
application/x-javascript
application/json
application/xml
application/xml+rss
image/svg+xml;
gzip_vary on;
# Banned locations (only reached if the earlier PHP entry point regexes dont match)
location ~* (\.php$|\.phtml$|\.htaccess$|\.git) {
deny all;
}" > "/etc/nginx/global/magento.conf"
sudo ln -sfnv /etc/nginx/sites-available/sample-magento.conf /etc/nginx/sites-enabled/sample-magento.conf
echo "${yellow}Installing PHP.${txtreset}"
brew install [email protected]
mkdir -p ~/Library/LaunchAgents
cp /usr/local/opt/[email protected]/[email protected] ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/[email protected]
lsof -Pni4 | grep LISTEN | grep php
sudo ln -s /usr/local/etc/php/7.4/php-fpm.conf /private/etc/php-fpm.conf
sudo sed -i '' 's/;error_log/error_log/' /private/etc/php-fpm.conf
sudo sed -i '' 's/log\/php-fpm.log/\/var\/log\/php-fpm.log/' /private/etc/php-fpm.conf
sudo touch /var/log/fpm7.4-php.slow.log
sudo chmod 775 /var/log/fpm7.4-php.slow.log
sudo chown "$USER":staff /var/log/fpm7.4-php.slow.log
sudo touch /var/log/fpm7.4-php.www.log
sudo chmod 775 /var/log/fpm7.4-php.www.log
sudo chown "$USER":staff /var/log/fpm7.4-php.www.log
sudo echo "export PATH=\"\$(brew --prefix [email protected])/bin:\$PATH\"" >> ~/.bashrc
brew services stop [email protected]
brew services start [email protected]
echo "${boldgreen}PHP installed and running.${txtreset}"
echo "${yellow}Installing MySQL.${txtreset}"
brew install [email protected]
brew services start [email protected]
sudo echo "#
# This group is read both both by the client and the server
# use it for options that affect everything
#
[client-server]
#
# include all files from the config directory
#
!includedir /usr/local/etc/my.cnf.d
[mysqld]
innodb_log_file_size = 32M
innodb_buffer_pool_size = 2G
innodb_log_buffer_size = 4M
slow_query_log = 1
query_cache_limit = 2M
query_cache_size = 512M
#skip-name-resolve" > "/usr/local/etc/my.cnf"
mkdir /usr/local/etc/my.cnf.d
echo "${boldgreen}MySQL installed and running.${txtreset}"
echo "${yellow}Installing elasticsearch.${txtreset}"
brew install elasticsearch
brew services start elasticsearch
echo "${boldgreen}elasticsearch installed and running.${txtreset}"
echo "${yellow}Restarting services....${txtreset}"
brew services stop nginx
brew services start nginx
brew services stop [email protected]
brew services start [email protected]
brew services stop [email protected]
brew services start [email protected]
brew services stop elasticsearch
brew services start elasticsearch
brew link [email protected]
brew link [email protected]
brew services list
echo "${boldgreen}Services installed!${txtreset}"