Fix rate limit docs and set header hierarchy correctly
This commit is contained in:
parent
11d6a8a372
commit
e96ca53aa4
1 changed files with 7 additions and 10 deletions
|
@ -13,23 +13,23 @@ docker run -d --restart=unless-stopped --name=pairdrop -p 127.0.0.1:3000:3000 ls
|
||||||
>
|
>
|
||||||
> To prevent bypassing the proxy by reaching the docker container directly, `127.0.0.1` is specified in the run command.
|
> To prevent bypassing the proxy by reaching the docker container directly, `127.0.0.1` is specified in the run command.
|
||||||
|
|
||||||
### Options / Flags
|
#### Options / Flags
|
||||||
Set options by using the following flags in the `docker run` command:
|
Set options by using the following flags in the `docker run` command:
|
||||||
|
|
||||||
#### Port
|
##### Port
|
||||||
```
|
```
|
||||||
-p 127.0.0.1:8080:3000
|
-p 127.0.0.1:8080:3000
|
||||||
```
|
```
|
||||||
> Specify the port used by the docker image
|
> Specify the port used by the docker image
|
||||||
> - 3000 -> `-p 127.0.0.1:3000:3000`
|
> - 3000 -> `-p 127.0.0.1:3000:3000`
|
||||||
> - 8080 -> `-p 127.0.0.1:8080:3000`
|
> - 8080 -> `-p 127.0.0.1:8080:3000`
|
||||||
#### Rate limiting requests
|
##### Rate limiting requests
|
||||||
```
|
```
|
||||||
-e RATE_LIMIT=true
|
-e RATE_LIMIT=true
|
||||||
```
|
```
|
||||||
> Limits clients to 100 requests per 5 min
|
> Limits clients to 1000 requests per 5 min
|
||||||
|
|
||||||
#### Websocket Fallback (for VPN)
|
##### Websocket Fallback (for VPN)
|
||||||
```
|
```
|
||||||
-e WS_FALLBACK=true
|
-e WS_FALLBACK=true
|
||||||
```
|
```
|
||||||
|
@ -42,8 +42,6 @@ Set options by using the following flags in the `docker run` command:
|
||||||
> Beware that the traffic routed via this fallback is readable by the server. Only ever use this on instances you can trust.
|
> Beware that the traffic routed via this fallback is readable by the server. Only ever use this on instances you can trust.
|
||||||
> Additionally, beware that all traffic using this fallback debits the servers data plan.
|
> Additionally, beware that all traffic using this fallback debits the servers data plan.
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
### Docker Image from GHCR
|
### Docker Image from GHCR
|
||||||
```bash
|
```bash
|
||||||
docker run -d --restart=unless-stopped --name=pairdrop -p 127.0.0.1:3000:3000 ghcr.io/schlagmichdoch/pairdrop npm run start:prod
|
docker run -d --restart=unless-stopped --name=pairdrop -p 127.0.0.1:3000:3000 ghcr.io/schlagmichdoch/pairdrop npm run start:prod
|
||||||
|
@ -76,7 +74,6 @@ docker run -d --restart=unless-stopped --name=pairdrop -p 127.0.0.1:3000:3000 -i
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
## Deployment with Docker Compose
|
## Deployment with Docker Compose
|
||||||
|
|
||||||
Here's an example docker-compose file:
|
Here's an example docker-compose file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -90,7 +87,7 @@ services:
|
||||||
- PUID=1000 # UID to run the application as
|
- PUID=1000 # UID to run the application as
|
||||||
- PGID=1000 # GID to run the application as
|
- PGID=1000 # GID to run the application as
|
||||||
- WS_FALLBACK=false # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.
|
- WS_FALLBACK=false # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.
|
||||||
- RATE_LIMIT=false # Set to true to limit clients to 100 requests per 5 min.
|
- RATE_LIMIT=false # Set to true to limit clients to 1000 requests per 5 min.
|
||||||
- TZ=Etc/UTC # Time Zone
|
- TZ=Etc/UTC # Time Zone
|
||||||
ports:
|
ports:
|
||||||
- 127.0.0.1:3000:3000 # Web UI
|
- 127.0.0.1:3000:3000 # Web UI
|
||||||
|
@ -167,7 +164,7 @@ npm start -- --auto-restart
|
||||||
```bash
|
```bash
|
||||||
npm start -- --rate-limit
|
npm start -- --rate-limit
|
||||||
```
|
```
|
||||||
> Limits clients to 100 requests per 5 min
|
> Limits clients to 1000 requests per 5 min
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue