pinokiod 3.152.0 → 3.153.0

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.
@@ -7,6 +7,10 @@ class Common extends Processor {
7
7
  handle({ match, dial, host }) {
8
8
  let handler = [{
9
9
  "handler": "reverse_proxy",
10
+ "transport": {
11
+ "protocol": "http",
12
+ "versions": ["1.1"]
13
+ },
10
14
  "upstreams": [{ "dial": dial }],
11
15
  "headers": {
12
16
  "request": {
@@ -12,6 +12,10 @@ class Connector extends Processor {
12
12
 
13
13
  let handler = [{
14
14
  "handler": "reverse_proxy",
15
+ "transport": {
16
+ "protocol": "http",
17
+ "versions": ["1.1"]
18
+ },
15
19
  "upstreams": [{ "dial": dial }],
16
20
  "headers": {
17
21
  "request": {
@@ -52,6 +56,10 @@ class Connector extends Processor {
52
56
  "handle": [
53
57
  {
54
58
  "handler": "reverse_proxy",
59
+ "transport": {
60
+ "protocol": "http",
61
+ "versions": ["1.1"]
62
+ },
55
63
  "upstreams": [{ "dial": listener_pointer }],
56
64
  "headers": {
57
65
  "request": {
@@ -51,6 +51,10 @@ class LocalhostHomeRouter {
51
51
  "handle": [
52
52
  {
53
53
  "handler": "reverse_proxy",
54
+ "transport": {
55
+ "protocol": "http",
56
+ "versions": ["1.1"]
57
+ },
54
58
  "upstreams": [{ "dial": this.router.default_host + ":" + this.router.default_port }],
55
59
  "headers": {
56
60
  "request": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.152.0",
3
+ "version": "3.153.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {