You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: documentation/2-options.md
+31
Original file line number
Diff line number
Diff line change
@@ -918,6 +918,37 @@ By default, requests will not use [method rewriting](https://datatracker.ietf.or
918
918
919
919
For example, when sending a `POST` request and receiving a `302`, it will resend the body to the new location using the same HTTP method (`POST` in this case). To rewrite the request as `GET`, set this option to `true`.
920
920
921
+
### `enableUnixSockets`
922
+
923
+
**Type: `boolean`**\
924
+
**Default: `true`**
925
+
926
+
When enabled, requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets). Please note that in the upcoming major release (Got v13) this default will be changed to `false` for security reasons.
927
+
928
+
> **Warning**
929
+
> Make sure you do your own URL sanitizing if you accept untrusted user input for the URL.
930
+
931
+
Use the following URL scheme: `PROTOCOL://unix:SOCKET:PATH`
932
+
933
+
-`PROTOCOL` - `http` or `https`
934
+
-`SOCKET` - Absolute path to a UNIX domain socket, for example: `/var/run/docker.sock`
Copy file name to clipboardexpand all lines: documentation/tips.md
+1-15
Original file line number
Diff line number
Diff line change
@@ -92,21 +92,7 @@ for await (const commitData of pagination) {
92
92
<aname="unix"></a>
93
93
### UNIX Domain Sockets
94
94
95
-
Requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets).\
96
-
Use the following URL scheme: `PROTOCOL://unix:SOCKET:PATH`
97
-
98
-
-`PROTOCOL` - `http` or `https`
99
-
-`SOCKET` - Absolute path to a unix domain socket, for example: `/var/run/docker.sock`
message: 'Using UNIX domain sockets but option `enableUnixSockets` is not enabled',
80
+
},
81
+
);
82
+
});
83
+
84
+
test('`http://unix:/` fails when UNIX sockets are not enabled',asynct=>{
0 commit comments