localhost 1.1.5 → 1.1.6
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 +4 -4
- data/README.md +8 -1
- data/lib/localhost/authority.rb +1 -1
- data/lib/localhost/version.rb +1 -1
- data/localhost.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 645f6d3160f878906fedd5129d3941b5d05a1072bc40da1aa4c95200bf5d7faa
|
4
|
+
data.tar.gz: 4266815c74d38f8b099f45e07dcc2bea6af3a056055fbfe6f7208422cd06ef1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bbe70b4011f0da73a79da43bb215af49cca9c00944acc9a2a3d858097212848080d7c39981aa247264fc49aa0637aa6e0d665c91d33600c8d92c0bf50f2daa1
|
7
|
+
data.tar.gz: 524195981b8dc2cbb545095adf152aa778a16c1e8792d2fe639b64e3dc05e70f072c8b3ed5223a16d9112bd50be2a5b4ffa15b63b78f2b55f25077762394bcc9
|
data/README.md
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
-
# Localhost
|
1
|
+
# Localhost
|
2
2
|
|
3
3
|
This gem provides a convenient API for generating per-user self-signed root certificates.
|
4
4
|
|
5
|
+
[](https://travis-ci.com/socketry/localhost)
|
6
|
+
[](https://coveralls.io/r/socketry/localhost)
|
7
|
+
|
5
8
|
## Motivation
|
6
9
|
|
7
10
|
HTTP/2 requires SSL in web browsers. If you want to use HTTP/2 for development (and you should), you need to start using URLs like `https://localhost:8080`. In most cases, this requires adding a self-signed certificate to your certificate store (e.g. Keychain on macOS), and storing the private key for the web-server to use.
|
@@ -91,6 +94,10 @@ If you use this with a web server, when you open the site in Chrome:
|
|
91
94
|
- Click "ADVANCED" to see additional details, including...
|
92
95
|
- Click "Proceed to localhost (unsafe)" which will allow you to use the site for the current browser session.
|
93
96
|
|
97
|
+
#### Self-Signed Localhost
|
98
|
+
|
99
|
+
The best way to use Chrome with self-signed localhost certificates is to allow it in your chrome settings: [chrome://flags/#allow-insecure-localhost](chrome://flags/#allow-insecure-localhost).
|
100
|
+
|
94
101
|
### Files
|
95
102
|
|
96
103
|
The certificate and private key are stored in `~/.localhost/`. You can delete them and they will be regenerated. If you added the certificate to your keychain, you'll probably want to delete that too.
|
data/lib/localhost/authority.rb
CHANGED
@@ -126,7 +126,7 @@ module Localhost
|
|
126
126
|
end
|
127
127
|
|
128
128
|
if context.respond_to? :ecdh_curves=
|
129
|
-
context.ecdh_curves = 'P-256:P-384:P-
|
129
|
+
context.ecdh_curves = 'P-256:P-384:P-521'
|
130
130
|
elsif context.respond_to? :tmp_ecdh_callback=
|
131
131
|
context.tmp_ecdh_callback = proc {self.ecdh_key}
|
132
132
|
end
|
data/lib/localhost/version.rb
CHANGED
data/localhost.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.require_paths = ["lib"]
|
18
18
|
|
19
19
|
spec.add_development_dependency "covered"
|
20
|
-
spec.add_development_dependency "bundler"
|
20
|
+
spec.add_development_dependency "bundler"
|
21
21
|
spec.add_development_dependency "rake", "~> 10.0"
|
22
22
|
spec.add_development_dependency "rspec", "~> 3.0"
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: localhost
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: covered
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|