envoy-proxy 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +21 -1
- data/lib/envoy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af0eb1e0d30de21f7ad86d376e2903e95a00adc6
|
4
|
+
data.tar.gz: dace9c16892974aef9f2c67e4e72d8ceb3105e97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc9f9ce9c1f859d12571a420c230db4c2f18773b1854c17456ece55bb6c785105b420970f5784243961df18622ee9eb59d38ee90e490bf4995fb5c4798e5e7f8
|
7
|
+
data.tar.gz: 5feda7586ad36a4bb3657876e17a93f594c183ec47549e903b6dbe5dd1e08a36e52918aaf15f9d57723c06eae2d576fd9c62823103d2e3c063cf0716681c6f23
|
data/README.md
CHANGED
@@ -1,4 +1,24 @@
|
|
1
1
|
# Envoy
|
2
2
|
|
3
|
-
A clone of proxylocal.
|
3
|
+
A clone of proxylocal. Both client and server are included.
|
4
4
|
|
5
|
+
## The client
|
6
|
+
|
7
|
+
envoyc [--host HOST] [--tls] [--server SERVER] [[ADDRESS:]PORT]
|
8
|
+
|
9
|
+
Makes the HTTP* service running at ADDRESS:PORT available via a proxylocal
|
10
|
+
service running on SERVER. The default server is p45.eu, and the default address
|
11
|
+
and port are 127.0.0.1 and 80.
|
12
|
+
|
13
|
+
By default, the service will be available on a randomly generated domain name.
|
14
|
+
e.g. 4iur.p45.eu. To specify the first component of the name, use the HOST
|
15
|
+
argument.
|
16
|
+
|
17
|
+
## The server
|
18
|
+
|
19
|
+
envoys [--listen [HOST:]PORT] ZONE
|
20
|
+
|
21
|
+
Starts a proxylocal-compatible server. Listens for HTTP requests on the
|
22
|
+
specified host and port, which default to 0.0.0.0 and 8080.
|
23
|
+
|
24
|
+
The ZONE specifies the domain name suffix.
|
data/lib/envoy/version.rb
CHANGED