deploy_mate 0.17.1 → 0.17.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ffe95b8feb78305ddda288275032a0e24d61c52c
4
- data.tar.gz: 3d2cc9033576451811da54f24878c7b1f6e24547
3
+ metadata.gz: 2bf095ffb1a8eb1f279e3511f141beb54c58417c
4
+ data.tar.gz: 3e04c3cc8bdd2af1658125cfb42dcfad3afda4aa
5
5
  SHA512:
6
- metadata.gz: f2bad3ef96218bca0ba735481e911b791fcf257674eb6b6ffa9abfa7733c50fde741bf023a131c0008f2bdccf672840f27d597c268dfc772a65cfeeda7250793
7
- data.tar.gz: 6788656321995b95b51bb699ffe4107c60f58dee2106680f2c9e41b678e5b13328b381d5e4cf8d2e6652abd0e1380f8cf2c9a929044ec89679f40ad41709b949
6
+ metadata.gz: 894d182a275e4fe3367f9868dc3dda661806f881f46b8abb4ab9dce0c67478f56901bb91be9d47a3f4289b7224d49d0ff8bf28d896fc5258cef6df16240912c0
7
+ data.tar.gz: 06ffd22280d69a36d67e5777d905e26b8f7229b3fca762534636cf1224c34dd9719f548aba081184ccf3d9c34ec8f12ee3ed8ed91167a43abb36257a2cc91f80
data/README.md CHANGED
@@ -29,6 +29,7 @@ It uses the following Capistrano-roles to divide the installed components:
29
29
  - **cronjobs**: [OPTIONAL] For environments where `whenever` should manage/run cronjobs
30
30
 
31
31
  ## Changelog
32
+ * **2015-08-14**: Important small fix for `nginx`-config regarding ssl
32
33
  * **2015-08-07**: Small fix for `rvm`-install
33
34
  * **2015-08-06**: Support for optional `sidekiq`
34
35
  * **2015-06-23**: Support for optional `elasticsearch`
data/deploy-mate.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "deploy_mate"
3
- s.version = "0.17.1"
3
+ s.version = "0.17.2"
4
4
 
5
5
  s.authors = ["Tim Adler"]
6
6
  s.date = %q{2015-06-23}
@@ -17,7 +17,7 @@ server {
17
17
 
18
18
  location @<%= fetch(:application) %> {
19
19
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
20
- proxy_set_header X-Forwarded-Proto http;
20
+ proxy_set_header X-Forwarded-Proto $scheme;
21
21
  proxy_set_header Host $http_host;
22
22
  proxy_redirect off;
23
23
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deploy_mate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.1
4
+ version: 0.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Adler