fix indents in yaml

This commit is contained in:
Milo Schwartz 2025-01-30 12:55:48 -05:00
parent 95c0c6efb1
commit d93e2c7224
No known key found for this signature in database

View file

@ -38,21 +38,21 @@ So for example a UDP EntryPoint would look like:
```yaml
entryPoints:
udp-1704:
address: ":1704/udp"
udp-1704:
address: ":1704/udp"
```
And for TCP:
```yaml
entryPoints:
tcp-1602:
address: ":1602/tcp"
tcp-1602:
address: ":1602/tcp"
```
:::info
The *name* if the EntryPoint is IMPORTANT because it must be referenced by the dynamic config. ALWAYS name your EntryPoint in the format `protocol-port` as shown in the examples!
The _name_ if the EntryPoint is IMPORTANT because it must be referenced by the dynamic config. ALWAYS name your EntryPoint in the format `protocol-port` as shown in the examples!
:::
@ -60,16 +60,16 @@ The whole thing would look something like this:
```yaml
entryPoints:
web:
address: ':80'
websecure:
address: ':443'
http:
tls:
certResolver: letsencrypt
transport:
respondingTimeouts:
readTimeout: 30m
web:
address: ":80"
websecure:
address: ":443"
http:
tls:
certResolver: letsencrypt
transport:
respondingTimeouts:
readTimeout: 30m
tcp-1602:
address: ":1602/tcp"
udp-1704:
@ -90,4 +90,4 @@ Finally! Now after all of that config you can create the resource in Pangolin. Y
![graphic](./img/create_udp_resource.png)
</p>
After you create the resource you can add targets just like any other resource!
After you create the resource you can add targets just like any other resource!