magic_recipes_two 0.0.55 → 0.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjM1NjVkYWJkYmNhNzhiNGYyNzQ1NTY5YjU2ZTZjOGViMDU1ZTNlNw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGQzZGEzZDViNTJhZDUwMWI1MzBkMDdlNzY1NjEyNzg3MDhjNzI2ZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZmMxOWM4N2IwNzJmNzMwZDE0MTc5NjcwZDhiZmIyNmFlNTAyNGM3OWI4NjUx
|
10
|
+
YjE0MjcyZGU1OTY5MTI3Yzk2ZjQ3ZWQ4MDcxMWVmZDA0Y2NjZWMyOTgwMWZh
|
11
|
+
ZjUyMDllOGRmMTZkOGI3ZmQ0NTc4YWNiNTYyODZkZTRhYTBhNjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YzRlNDZlN2U0ZDEyMzJlNGVhOWEzMjkxNDNmOGYyMzFlNDZkYzIzYjhhMjhk
|
14
|
+
NzRiYWY0OTc0M2NlYWNkY2M5ZTNjYWExN2ZmYmEzY2YxNTI0M2ZmODdjMDY5
|
15
|
+
NzJjNzYwM2ZlMGMwZjRiZGY3ZDdlYzk2ZTdmNThkN2QxZjQwODk=
|
@@ -21,10 +21,12 @@ namespace :load do
|
|
21
21
|
set :nginx_use_ssl, -> { false }
|
22
22
|
set :nginx_ssl_certificate, -> { "#{fetch(:application)}.crt" }
|
23
23
|
set :nginx_ssl_certificate_path, -> { '/etc/ssl/certs' }
|
24
|
-
set :nginx_ssl_certificate_key, -> { "#{fetch(:application)}.
|
24
|
+
set :nginx_ssl_certificate_key, -> { "#{fetch(:application)}.key" }
|
25
25
|
set :nginx_ssl_certificate_key_path, -> { '/etc/ssl/private' }
|
26
26
|
set :app_server_ip, -> { "127.0.0.1" }
|
27
27
|
set :nginx_hooks, -> { true }
|
28
|
+
## Lets Encrypt - Challenge Path
|
29
|
+
set :allow_well_known -> { false }
|
28
30
|
## NginX Proxy-Caching
|
29
31
|
# Cache Rails
|
30
32
|
set :proxy_cache_rails, -> { false }
|
@@ -195,7 +195,13 @@ server {
|
|
195
195
|
expires max;
|
196
196
|
add_header Cache-Control public;
|
197
197
|
}
|
198
|
-
|
198
|
+
|
199
|
+
<% if fetch(:allow_well_known) %>
|
200
|
+
location ~ /.well-known {
|
201
|
+
allow all;
|
202
|
+
}
|
203
|
+
<% end %>
|
204
|
+
|
199
205
|
<% if fetch(:proxy_cache_media) %>
|
200
206
|
# Media-Path with NginX-Proxy-Cache
|
201
207
|
location ^~ /<%= fetch(:proxy_cache_media_path) %>/ {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: magic_recipes_two
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.56
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Torsten Wetzel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03-
|
11
|
+
date: 2017-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|