forked from jerrod/ey-cloud-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aaa
660 lines (568 loc) · 20.5 KB
/
aaa
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
server {
#
# The default port to listen on.
#
# Note that this may be also specified as IP:Port combinations.
#
# By default Nginx will listen for traffic on the specified port for all IP
# addresses assigned to the host.
#
listen 8090;
#
# Server Names
#
# This is the list of IP's and/or domain names with any wildcards or
# subdomains. The special value '_' is used to match all domains and IPs and
# generally denotes the default server for the entire Nginx process.
#
# Note that if you specify any domains with wild cards, the very first domain
# listed must be without a wild card. For example:
#
# server_name www.mydomain.org *.mydomain.org;
#
# It is good practice to include wildcard subdomains so that Nginx will not
# require a restart when new services are added for an application.
#
server_name _;
#
# SSL certificates
#
# Be sure that the directory and files are owned by and/or readable by the
# Nginx user. Additionally, it is recommended that you do not use signed
# certificates. The justification for this reocommendation is that in order to
# start up the Nginx server the password will need to be typed in every time.
# This precludes automatic/automated web server restarts on boot or otherwise.
#
#
# This assigns the maximum accepted body size of client request. It is placed
# here as a precaution to limit against certain kinds of attacks. Be aware that
# it is here in case the application accepts large file uploads. In such a case
# this value will need to be adjusted.
#
client_max_body_size 100M;
#
# The application root which is inherited for all location blocks below.
#
root /data/Construcs/current/public;
#
# Logging
#
# Log files are stored within the /var/log/engineyard/nginx/ directory.
#
access_log /var/log/engineyard/nginx/Construcs.access.log main;
error_log /var/log/engineyard/nginx/Construcs.error.log notice;
#
# Expire header on assets. For more information on the reasoning behind
# this please browse http://developer.yahoo.com/performance/rules.html#expires
#
location ~ ^/juggernaut.* {
rewrite ^/juggernaut/(.*)$ / break;
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/socket.io.* {
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/(images|assets|javascripts|stylesheets)/ {
expires 10y;
try_files /index.html /last_assets/ /last_assets/.html @app_Construcs;
}
#
# HTTP Error handling.
#
# 404 - Resource Not found.
error_page 404 /404.html;
# 50X - Application Error(s)
error_page 500 502 504 /500.html;
# 503 - System Maintenance
error_page 503 @503;
recursive_error_pages on;
location @503 {
error_page 405 = /system/maintenance.html;
# Serve static assets if found.
if (-f ) {
break;
}
rewrite ^(.*)$ /system/maintenance.html break;
}
#
# Passenger Application block
#
location @app_Construcs {
# Turn on the passenger Nginx helper for this location.
passenger_enabled on;
# These don't seem to work in stack, which is in the http {} block
passenger_set_cgi_param HTTP_X_FORWARDED_FOR ;
passenger_set_cgi_param HTTP_X_REAL_IP ;
passenger_set_cgi_param HTTP_HOST ;
passenger_set_cgi_param HTTP_X_FORWARDED_PROTO ;
passenger_set_cgi_param HTTP_X_REQUEST_START 't=';
passenger_set_cgi_param HTTP_X_QUEUE_START 't=';
# Rails 3.0 apps that use rack-ssl use SERVER_PORT to generate a https
# URL. Since internally nginx runs on a different port, the generated
# URL looked like this: https://host:81/ instead of https://host/
# By setting SERVER_PORT this is avoided.
passenger_set_cgi_param SERVER_PORT 80;
#
# Define the rack/rails application environment.
#
rack_env engine_yard;
#
# 2 application instances is the minimum required to serve any real traffic.
#
# This avoids 'first request' startup delay 'issues' that can be seen after
# restarting an Nginx server.
#
passenger_min_instances 2;
#
# If global queuing is turned on, then Phusion Passenger will use a global
# queue that’s shared between all backend processes. If an HTTP request
# comes in, and all the backend processes are still busy, then Phusion
# Passenger will wait until at least one backend process is done, and will
# then forward the request to that process.
#
# http://www.modrails.com/documentation/Users%20guide%20Nginx.html#PassengerUseGlobalQueue
#
passenger_use_global_queue on;
}
#
# The default location will process the request as follows:
#
# 1. If a system maintenance page is in place, serve it.
# 2. If the request uri matches a resource on disk, serve it.
# 3. If the request uri/index.html matches a cache file on disk, serve it.
# 4. If the request uri.html is cached on disk, serve it.
# 5. Failing any caching or system maintenance, pass the request to the
# application.
#
location / {
if (-f /system/maintenance.html) { return 503; }
try_files /index.html .html @app_Construcs;
}
include /etc/nginx/servers/Construcs/custom.conf;
}
server {
#
# The default port to listen on.
#
# Note that this may be also specified as IP:Port combinations.
#
# By default Nginx will listen for traffic on the specified port for all IP
# addresses assigned to the host.
#
listen 8090;
#
# Server Names
#
# This is the list of IP's and/or domain names with any wildcards or
# subdomains. The special value '_' is used to match all domains and IPs and
# generally denotes the default server for the entire Nginx process.
#
# Note that if you specify any domains with wild cards, the very first domain
# listed must be without a wild card. For example:
#
# server_name www.mydomain.org *.mydomain.org;
#
# It is good practice to include wildcard subdomains so that Nginx will not
# require a restart when new services are added for an application.
#
server_name _;
#
# SSL certificates
#
# Be sure that the directory and files are owned by and/or readable by the
# Nginx user. Additionally, it is recommended that you do not use signed
# certificates. The justification for this reocommendation is that in order to
# start up the Nginx server the password will need to be typed in every time.
# This precludes automatic/automated web server restarts on boot or otherwise.
#
#
# This assigns the maximum accepted body size of client request. It is placed
# here as a precaution to limit against certain kinds of attacks. Be aware that
# it is here in case the application accepts large file uploads. In such a case
# this value will need to be adjusted.
#
client_max_body_size 100M;
#
# The application root which is inherited for all location blocks below.
#
root /data/Construcs/current/public;
#
# Logging
#
# Log files are stored within the /var/log/engineyard/nginx/ directory.
#
access_log /var/log/engineyard/nginx/Construcs.access.log main;
error_log /var/log/engineyard/nginx/Construcs.error.log notice;
#
# Expire header on assets. For more information on the reasoning behind
# this please browse http://developer.yahoo.com/performance/rules.html#expires
#
location ~ ^/juggernaut.* {
rewrite ^/juggernaut/(.*)$ / break;
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/socket.io.* {
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/(images|assets|javascripts|stylesheets)/ {
expires 10y;
try_files /index.html /last_assets/ /last_assets/.html @app_Construcs;
}
#
# HTTP Error handling.
#
# 404 - Resource Not found.
error_page 404 /404.html;
# 50X - Application Error(s)
error_page 500 502 504 /500.html;
# 503 - System Maintenance
error_page 503 @503;
recursive_error_pages on;
location @503 {
error_page 405 = /system/maintenance.html;
# Serve static assets if found.
if (-f ) {
break;
}
rewrite ^(.*)$ /system/maintenance.html break;
}
#
# Passenger Application block
#
location @app_Construcs {
# Turn on the passenger Nginx helper for this location.
passenger_enabled on;
# These don't seem to work in stack, which is in the http {} block
passenger_set_cgi_param HTTP_X_FORWARDED_FOR ;
passenger_set_cgi_param HTTP_X_REAL_IP ;
passenger_set_cgi_param HTTP_HOST ;
passenger_set_cgi_param HTTP_X_FORWARDED_PROTO ;
passenger_set_cgi_param HTTP_X_REQUEST_START 't=';
passenger_set_cgi_param HTTP_X_QUEUE_START 't=';
# Rails 3.0 apps that use rack-ssl use SERVER_PORT to generate a https
# URL. Since internally nginx runs on a different port, the generated
# URL looked like this: https://host:81/ instead of https://host/
# By setting SERVER_PORT this is avoided.
passenger_set_cgi_param SERVER_PORT 80;
#
# Define the rack/rails application environment.
#
rack_env engine_yard;
#
# 2 application instances is the minimum required to serve any real traffic.
#
# This avoids 'first request' startup delay 'issues' that can be seen after
# restarting an Nginx server.
#
passenger_min_instances 2;
#
# If global queuing is turned on, then Phusion Passenger will use a global
# queue that’s shared between all backend processes. If an HTTP request
# comes in, and all the backend processes are still busy, then Phusion
# Passenger will wait until at least one backend process is done, and will
# then forward the request to that process.
#
# http://www.modrails.com/documentation/Users%20guide%20Nginx.html#PassengerUseGlobalQueue
#
passenger_use_global_queue on;
}
#
# The default location will process the request as follows:
#
# 1. If a system maintenance page is in place, serve it.
# 2. If the request uri matches a resource on disk, serve it.
# 3. If the request uri/index.html matches a cache file on disk, serve it.
# 4. If the request uri.html is cached on disk, serve it.
# 5. Failing any caching or system maintenance, pass the request to the
# application.
#
location / {
if (-f /system/maintenance.html) { return 503; }
try_files /index.html .html @app_Construcs;
}
include /etc/nginx/servers/Construcs/custom.conf;
}
server {
#
# The default port to listen on.
#
# Note that this may be also specified as IP:Port combinations.
#
# By default Nginx will listen for traffic on the specified port for all IP
# addresses assigned to the host.
#
listen 8090;
#
# Server Names
#
# This is the list of IP's and/or domain names with any wildcards or
# subdomains. The special value '_' is used to match all domains and IPs and
# generally denotes the default server for the entire Nginx process.
#
# Note that if you specify any domains with wild cards, the very first domain
# listed must be without a wild card. For example:
#
# server_name www.mydomain.org *.mydomain.org;
#
# It is good practice to include wildcard subdomains so that Nginx will not
# require a restart when new services are added for an application.
#
server_name _;
#
# SSL certificates
#
# Be sure that the directory and files are owned by and/or readable by the
# Nginx user. Additionally, it is recommended that you do not use signed
# certificates. The justification for this reocommendation is that in order to
# start up the Nginx server the password will need to be typed in every time.
# This precludes automatic/automated web server restarts on boot or otherwise.
#
#
# This assigns the maximum accepted body size of client request. It is placed
# here as a precaution to limit against certain kinds of attacks. Be aware that
# it is here in case the application accepts large file uploads. In such a case
# this value will need to be adjusted.
#
client_max_body_size 100M;
#
# The application root which is inherited for all location blocks below.
#
root /data/Construcs/current/public;
#
# Logging
#
# Log files are stored within the /var/log/engineyard/nginx/ directory.
#
access_log /var/log/engineyard/nginx/Construcs.access.log main;
error_log /var/log/engineyard/nginx/Construcs.error.log notice;
#
# Expire header on assets. For more information on the reasoning behind
# this please browse http://developer.yahoo.com/performance/rules.html#expires
#
location ~ ^/juggernaut.* {
rewrite ^/juggernaut/(.*)$ / break;
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/socket.io.* {
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/(images|assets|javascripts|stylesheets)/ {
expires 10y;
try_files /index.html /last_assets/ /last_assets/.html @app_Construcs;
}
#
# HTTP Error handling.
#
# 404 - Resource Not found.
error_page 404 /404.html;
# 50X - Application Error(s)
error_page 500 502 504 /500.html;
# 503 - System Maintenance
error_page 503 @503;
recursive_error_pages on;
location @503 {
error_page 405 = /system/maintenance.html;
# Serve static assets if found.
if (-f ) {
break;
}
rewrite ^(.*)$ /system/maintenance.html break;
}
#
# Passenger Application block
#
location @app_Construcs {
# Turn on the passenger Nginx helper for this location.
passenger_enabled on;
# These don't seem to work in stack, which is in the http {} block
passenger_set_cgi_param HTTP_X_FORWARDED_FOR ;
passenger_set_cgi_param HTTP_X_REAL_IP ;
passenger_set_cgi_param HTTP_HOST ;
passenger_set_cgi_param HTTP_X_FORWARDED_PROTO ;
passenger_set_cgi_param HTTP_X_REQUEST_START 't=';
passenger_set_cgi_param HTTP_X_QUEUE_START 't=';
# Rails 3.0 apps that use rack-ssl use SERVER_PORT to generate a https
# URL. Since internally nginx runs on a different port, the generated
# URL looked like this: https://host:81/ instead of https://host/
# By setting SERVER_PORT this is avoided.
passenger_set_cgi_param SERVER_PORT 80;
#
# Define the rack/rails application environment.
#
rack_env engine_yard;
#
# 2 application instances is the minimum required to serve any real traffic.
#
# This avoids 'first request' startup delay 'issues' that can be seen after
# restarting an Nginx server.
#
passenger_min_instances 2;
#
# If global queuing is turned on, then Phusion Passenger will use a global
# queue that’s shared between all backend processes. If an HTTP request
# comes in, and all the backend processes are still busy, then Phusion
# Passenger will wait until at least one backend process is done, and will
# then forward the request to that process.
#
# http://www.modrails.com/documentation/Users%20guide%20Nginx.html#PassengerUseGlobalQueue
#
passenger_use_global_queue on;
}
#
# The default location will process the request as follows:
#
# 1. If a system maintenance page is in place, serve it.
# 2. If the request uri matches a resource on disk, serve it.
# 3. If the request uri/index.html matches a cache file on disk, serve it.
# 4. If the request uri.html is cached on disk, serve it.
# 5. Failing any caching or system maintenance, pass the request to the
# application.
#
location / {
if (-f /system/maintenance.html) { return 503; }
try_files /index.html .html @app_Construcs;
}
include /etc/nginx/servers/Construcs/custom.conf;
}
server {
#
# The default port to listen on.
#
# Note that this may be also specified as IP:Port combinations.
#
# By default Nginx will listen for traffic on the specified port for all IP
# addresses assigned to the host.
#
listen 8090;
#
# Server Names
#
# This is the list of IP's and/or domain names with any wildcards or
# subdomains. The special value '_' is used to match all domains and IPs and
# generally denotes the default server for the entire Nginx process.
#
# Note that if you specify any domains with wild cards, the very first domain
# listed must be without a wild card. For example:
#
# server_name www.mydomain.org *.mydomain.org;
#
# It is good practice to include wildcard subdomains so that Nginx will not
# require a restart when new services are added for an application.
#
server_name _;
#
# SSL certificates
#
# Be sure that the directory and files are owned by and/or readable by the
# Nginx user. Additionally, it is recommended that you do not use signed
# certificates. The justification for this reocommendation is that in order to
# start up the Nginx server the password will need to be typed in every time.
# This precludes automatic/automated web server restarts on boot or otherwise.
#
#
# This assigns the maximum accepted body size of client request. It is placed
# here as a precaution to limit against certain kinds of attacks. Be aware that
# it is here in case the application accepts large file uploads. In such a case
# this value will need to be adjusted.
#
client_max_body_size 100M;
#
# The application root which is inherited for all location blocks below.
#
root /data/Construcs/current/public;
#
# Logging
#
# Log files are stored within the /var/log/engineyard/nginx/ directory.
#
access_log /var/log/engineyard/nginx/Construcs.access.log main;
error_log /var/log/engineyard/nginx/Construcs.error.log notice;
#
# Expire header on assets. For more information on the reasoning behind
# this please browse http://developer.yahoo.com/performance/rules.html#expires
#
location ~ ^/juggernaut.* {
rewrite ^/juggernaut/(.*)$ / break;
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/socket.io.* {
proxy_pass http://127.0.0.1:8000;
}
location ~ ^/(images|assets|javascripts|stylesheets)/ {
expires 10y;
try_files /index.html /last_assets/ /last_assets/.html @app_Construcs;
}
#
# HTTP Error handling.
#
# 404 - Resource Not found.
error_page 404 /404.html;
# 50X - Application Error(s)
error_page 500 502 504 /500.html;
# 503 - System Maintenance
error_page 503 @503;
recursive_error_pages on;
location @503 {
error_page 405 = /system/maintenance.html;
# Serve static assets if found.
if (-f ) {
break;
}
rewrite ^(.*)$ /system/maintenance.html break;
}
#
# Passenger Application block
#
location @app_Construcs {
# Turn on the passenger Nginx helper for this location.
passenger_enabled on;
# These don't seem to work in stack, which is in the http {} block
passenger_set_cgi_param HTTP_X_FORWARDED_FOR ;
passenger_set_cgi_param HTTP_X_REAL_IP ;
passenger_set_cgi_param HTTP_HOST ;
passenger_set_cgi_param HTTP_X_FORWARDED_PROTO ;
passenger_set_cgi_param HTTP_X_REQUEST_START 't=';
passenger_set_cgi_param HTTP_X_QUEUE_START 't=';
# Rails 3.0 apps that use rack-ssl use SERVER_PORT to generate a https
# URL. Since internally nginx runs on a different port, the generated
# URL looked like this: https://host:81/ instead of https://host/
# By setting SERVER_PORT this is avoided.
passenger_set_cgi_param SERVER_PORT 80;
#
# Define the rack/rails application environment.
#
rack_env engine_yard;
#
# 2 application instances is the minimum required to serve any real traffic.
#
# This avoids 'first request' startup delay 'issues' that can be seen after
# restarting an Nginx server.
#
passenger_min_instances 2;
#
# If global queuing is turned on, then Phusion Passenger will use a global
# queue that’s shared between all backend processes. If an HTTP request
# comes in, and all the backend processes are still busy, then Phusion
# Passenger will wait until at least one backend process is done, and will
# then forward the request to that process.
#
# http://www.modrails.com/documentation/Users%20guide%20Nginx.html#PassengerUseGlobalQueue
#
passenger_use_global_queue on;
}
#
# The default location will process the request as follows:
#
# 1. If a system maintenance page is in place, serve it.
# 2. If the request uri matches a resource on disk, serve it.
# 3. If the request uri/index.html matches a cache file on disk, serve it.
# 4. If the request uri.html is cached on disk, serve it.
# 5. Failing any caching or system maintenance, pass the request to the
# application.
#
location / {
if (-f /system/maintenance.html) { return 503; }
try_files /index.html .html @app_Construcs;
}
include /etc/nginx/servers/Construcs/custom.conf;
}