Skip to content

Commit

Permalink
Create faucet.md
Browse files Browse the repository at this point in the history
  • Loading branch information
liangping authored Jun 1, 2024
1 parent 9278495 commit de8b8e4
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions faucet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Guild for faucet service

## Submit You Config

```json
{
}
```

## Fund the faucet account

Visit your faucet page on [testnet.ping.pub](https://testnet.ping.pub)

find the address and send some tokens to the address.


## Proxy GRPC with Caddy

the default grpc (9090) is insecure, we need to enable https

1. install caddy
```sh
sudo apt install caddy -y
```

2. add proxy:
```sh
vi /etc/caddy/Caddyfile
```
```caddy
testnet-grpc.side.one { # replace your domain.
reverse_proxy localhost:9090 {
transport http {
versions h2c 2
}
}
}
```

3. reload
```sh
sudo systemctl reload caddy
```

0 comments on commit de8b8e4

Please sign in to comment.