redirus 0.1.1 → 0.1.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 21f7c960905cd51f387ec478fc35044880d4b325
4
- data.tar.gz: a011bc663faa9ae72155fb39f9f7b574a2d0e554
3
+ metadata.gz: 5a52df1a66b61631d4906babcba2bf20aed4e0ad
4
+ data.tar.gz: 30cdec5ac63efaa135a8ce7c53e55e05899b63c3
5
5
  SHA512:
6
- metadata.gz: 5090dc2adfc2b6ea8c669637b1ae4124406c4b7e0fabb02340c18a52e74081d02368a5021ef8a30c6438b90c46171e340ccee3881d7a665f0a5ab8eb3b811fd3
7
- data.tar.gz: 589e89200c73ab610f4400fd3970f27b9fc1cccd9212b8bf92058e92517fa8abbc74347e9acf59813793db458edb22e951bfd203e907da4ed18f3130dac19605
6
+ metadata.gz: c71b3d6dde486e69153d3250180f4a3ffe3dcbdebe5d696c4c22ce876ed35357f4b28ae6429d4b14b3beb79764634d210d116419ed1d219716a00d4acbbb7a6f
7
+ data.tar.gz: 053f86bdaf783adec2a26d28d0cf3b1a5d6cca0676f742c9927df6b671ca50a07de8f4baf4cd2670a7986c2bb73ca60316032ad775261eca8c29c77233cebb8a
@@ -0,0 +1,4 @@
1
+ # Prefer single quotes
2
+ StringLiterals:
3
+ EnforcedStyle: single_quotes
4
+ Enabled: true
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v 0.1.2
2
+ - ssl_protocols set to TLSv1 TLSv1.1 TLSv1.2 in default nginx configurations
3
+
1
4
  v 0.1.1
2
5
  - Sidekiq redis configuration only in clients
3
6
  - Default action in redirus-client set to add
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redirus (0.1.1)
4
+ redirus (0.1.2)
5
5
  sidekiq
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -157,6 +157,7 @@ nginx:
157
157
  listen *:443 ssl;
158
158
  ssl_certificate /path/to/cert/dir/server.crt;
159
159
  ssl_certificate_key /path/to/cert/dir/server.key;
160
+ ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
160
161
  config_template: |
161
162
  #{upstream}
162
163
  server {
@@ -14,6 +14,7 @@ nginx:
14
14
  listen *:443 ssl;
15
15
  ssl_certificate /path/to/cert/dir/server.crt;
16
16
  ssl_certificate_key /path/to/cert/dir/server.key;
17
+ ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
17
18
  config_template: |
18
19
  #{upstream}
19
20
  server {
@@ -29,4 +30,4 @@ nginx:
29
30
  }
30
31
  allowed_properties:
31
32
  - proxy_sent_timeout \d
32
- - proxy_read_timeout \d
33
+ - proxy_read_timeout \d
@@ -40,6 +40,7 @@ module Redirus
40
40
  nginx_prop :https_template, %q[listen *:443 ssl;
41
41
  ssl_certificate /usr/share/ssl/certs/localhost/host.cert;
42
42
  ssl_certificate_key /usr/share/ssl/certs/localhost/host.key;
43
+ ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
43
44
  ]
44
45
  end
45
46
 
@@ -69,4 +70,4 @@ server {
69
70
  value || default
70
71
  end
71
72
  end
72
- end
73
+ end
@@ -1,3 +1,3 @@
1
1
  module Redirus
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redirus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marek Kasztelnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-14 00:00:00.000000000 Z
11
+ date: 2014-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sidekiq
@@ -118,6 +118,7 @@ extensions: []
118
118
  extra_rdoc_files: []
119
119
  files:
120
120
  - .gitignore
121
+ - .hound.yml
121
122
  - .rspec
122
123
  - .ruby-version
123
124
  - .travis.yml