···2829```bash
30RELAY_LENIENT_SYNC_VALIDATION=true
31-RELAY_REPLAY_WINDOW=24h
32RELAY_PERSIST_DIR=/data/relay/persist
33RELAY_ADMIN_PASSWORD=
34RELAY_TRUSTED_DOMAINS=
···41POSTGRES_DB=
42```
4344-start relay
0000000000000000004546```bash
47docker compose up -d
···5758see [bootstrapping host list](https://github.com/bluesky-social/indigo/blob/main/cmd/relay/README.md#bootstrapping-host-list) and the [how to do it](https://whtwnd.com/futur.blue/3lkubavdilf2m) section in futur's blog post to see how to bootstrap your relay with pdses
5960-note: im still figuring this out so i may be missing a lot of stuff0000000000000000
···2829```bash
30RELAY_LENIENT_SYNC_VALIDATION=true
31+RELAY_REPLAY_WINDOW=48h
32RELAY_PERSIST_DIR=/data/relay/persist
33RELAY_ADMIN_PASSWORD=
34RELAY_TRUSTED_DOMAINS=
···41POSTGRES_DB=
42```
4344+update the caddy file to point to your domain (make sure you have set up the necessary dns records)
45+46+```bash
47+// conf/Caddyfile
48+49+yourdomain.com {
50+ reverse_proxy relay:2470
51+}
52+```
53+54+if you wanted to just test things out you can use something like ngrok
55+56+```bash
57+ngrok http 2470
58+```
59+60+then just take whatever domain is generated for you and add it to the caddyfile
61+62+start the relay
6364```bash
65docker compose up -d
···7576see [bootstrapping host list](https://github.com/bluesky-social/indigo/blob/main/cmd/relay/README.md#bootstrapping-host-list) and the [how to do it](https://whtwnd.com/futur.blue/3lkubavdilf2m) section in futur's blog post to see how to bootstrap your relay with pdses
7778+for convenience, I've included a `pull-hosts.sh` bash script that pretty much does the same thing described in the indigo repo. make sure the relay is not running before proceeding.
79+80+to use this script you'd need to [install `goat`](https://github.com/bluesky-social/indigo/tree/main/cmd/goat#install)
81+82+make the script executable and run it and redirect the output to a text file
83+84+```bash
85+chmod u+x pull-hosts.sh
86+87+./pull-hosts > hosts.txt
88+```
89+90+we can then use `goat` to add hosts to the relay
91+92+```bash
93+shuf hosts.txt | parallel goat relay admin host add {}
94+```