Skip to content

Commit 36f58db

Browse files
committed
Use correct namespace for serverstransport
1 parent bc8aad6 commit 36f58db

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/FAQ.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hide:
66

77
??? faq "My host is incompatible with images based on Ubuntu Jammy"
88

9-
##### My host is incompatible with images based on Ubuntu Jammy { #jammy }
9+
##### My host is incompatible with images based on Ubuntu Jammy { #jammy }
1010

1111
=== "Description"
1212

@@ -53,7 +53,7 @@ hide:
5353

5454
??? faq "My host is incompatible with images based on rdesktop"
5555

56-
##### My host is incompatible with images based on rdesktop { #rdesktop }
56+
##### My host is incompatible with images based on rdesktop { #rdesktop }
5757

5858
=== "Description"
5959

@@ -82,7 +82,7 @@ hide:
8282

8383
??? faq "My host is incompatible with images based on Ubuntu Focal and Alpine 3.13 and later"
8484

85-
##### My host is incompatible with images based on Ubuntu Focal and Alpine 3.13 and later { #libseccomp }
85+
##### My host is incompatible with images based on Ubuntu Focal and Alpine 3.13 and later { #libseccomp }
8686

8787
=== "Description"
8888

@@ -143,7 +143,7 @@ hide:
143143

144144
??? faq "My host filesystem is incompatible with my docker storage driver"
145145

146-
##### My host filesystem is incompatible with my docker storage driver { #storage }
146+
##### My host filesystem is incompatible with my docker storage driver { #storage }
147147

148148
=== "Description"
149149

@@ -172,7 +172,7 @@ hide:
172172

173173
??? faq "What is lscr.io"
174174

175-
##### What is lscr.io { #lscr }
175+
##### What is lscr.io { #lscr }
176176

177177
LSCR is a vanity url for our images, this is provided to us in collaboration with [scarf.sh](https://about.scarf.sh/). It is not a dedicated docker registry, rather a redirection service. As of writing it redirects to GitHub Container Registry (ghcr.io).
178178

@@ -186,7 +186,7 @@ hide:
186186

187187
??? faq "I cannot connect to lscr.io"
188188

189-
##### I cannot connect to lscr.io { #lscr-no-connect }
189+
##### I cannot connect to lscr.io { #lscr-no-connect }
190190

191191
Due to the nature of Scarf as a Docker gateway which gathers usage metrics, some overzealous privacy-focused blocklists will include its domains.
192192

@@ -220,7 +220,7 @@ hide:
220220

221221
??? faq "I want to reverse proxy an application which defaults to https with a self-signed certificate"
222222

223-
##### I want to reverse proxy an application which defaults to https with a self-signed certificate { #strict-proxy }
223+
##### I want to reverse proxy an application which defaults to https with a self-signed certificate { #strict-proxy }
224224

225225
=== "Traefik"
226226

@@ -230,21 +230,21 @@ hide:
230230

231231
```yml
232232
http:
233-
serversTransports:
234-
ignorecert:
235-
insecureSkipVerify: true
233+
serversTransports:
234+
ignorecert:
235+
insecureSkipVerify: true
236236
```
237237

238238
Then on our `foo` service we tell it to use this rule, as well as telling Traefik the backend is running on https.
239239

240240
```yml
241-
- traefik.http.services.foo.loadbalancer.serverstransport=ignorecert
241+
- traefik.http.services.foo.loadbalancer.serverstransport=ignorecert@file
242242
- traefik.http.services.foo.loadbalancer.server.scheme=https
243243
```
244244

245245
??? faq "Why does LinuxServer.io recommend to use docker-compose over Portainer?"
246246

247-
##### Why does LinuxServer.io recommend to use docker-compose over Portainer? { #portainer }
247+
##### Why does LinuxServer.io recommend to use docker-compose over Portainer? { #portainer }
248248

249249
Portainer has many issues which make it hard for us to support, such as:
250250

@@ -257,7 +257,7 @@ hide:
257257

258258
??? faq "Inexplicable issues when running ubuntu"
259259

260-
##### Inexplicable issues when running ubuntu { #snap }
260+
##### Inexplicable issues when running ubuntu { #snap }
261261

262262
=== "Description"
263263

@@ -309,13 +309,13 @@ hide:
309309

310310
docker: /usr/bin/docker /etc/docker /usr/libexec/docker /snap/bin/docker.machine /snap/bin/docker.help /snap/bin/docker.compose /snap/bin/docker /usr/share/man/man1/docker.1.gz
311311
```
312-
As you can see in the second one, multiple versions can coexist which is a big tshoot problem.
312+
As you can see in the second one, multiple versions can coexist which is a big tshoot problem.
313313

314314
Once this is complete, if the expected version isn't present, simply follow [docker install on ubuntu](https://docs.docker.com/engine/install/ubuntu/)
315315

316-
When they finish, running `docker` commands may result in `-bash: /snap/bin/docker: No such file or directory` if this is the case, this is simply a shell patch issue, they can launch a new shell or simply input `hash -r` which should resolve the problem. Version info at the time of this writing should be
316+
When they finish, running `docker` commands may result in `-bash: /snap/bin/docker: No such file or directory` if this is the case, this is simply a shell patch issue, they can launch a new shell or simply input `hash -r` which should resolve the problem. Version info at the time of this writing should be
317317
```bash
318318
~ # docker --version && docker compose version
319319
Docker version 24.0.7, build afdd53b
320320
Docker Compose version v2.21.0
321-
```
321+
```

0 commit comments

Comments
 (0)