mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-07 16:44:59 -05:00
fix: adding keys
This commit is contained in:
parent
e883484e66
commit
5d168b2bd8
@ -69,19 +69,19 @@ _Note: Skip this step if you're using [TCPShield](https://tcpshield.com/) for DD
|
||||
Enable proxy protocol in your proxy's configuration file:
|
||||
### Velocity
|
||||
|
||||
In velocity.toml under advanced, set
|
||||
In `velocity.toml` under advanced, set
|
||||
```
|
||||
haproxy-protocol = true
|
||||
```
|
||||
### Waterfall
|
||||
|
||||
In config.yml under listeners, set
|
||||
In `config.yml` under listeners, set
|
||||
```
|
||||
proxy_protocol: true
|
||||
```
|
||||
### Paper
|
||||
|
||||
In config/paper-global.yml under proxies, set
|
||||
In `config/paper-global.yml` under proxies, set
|
||||
```
|
||||
proxy-protocol: true
|
||||
```
|
||||
|
||||
@ -73,7 +73,7 @@ function Subdocs({ docs }: { docs: (Docs | DocsFolder)[] }) {
|
||||
<>
|
||||
{docs.map((doc) => {
|
||||
if ("docs" in doc) {
|
||||
return <Subdocs docs={doc.docs} />;
|
||||
return <Subdocs docs={doc.docs} key={doc.name} />;
|
||||
}
|
||||
return (
|
||||
<>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user