Proxy Setup
A reverse proxy is what routes all the traffic from your domain to the instance itself, You can’t really run an instance without one
There are a few options like Nginx, Caddy, Cloudflare Tunnels
Keep in mind Cloudflare Tunnels aren’t officially supported by us but we are 99% sure it will work just fine with it.
Caddy
This is the preferred proxy to be used with Pawkey as we use it for all the development servers and testing.
In your Caddyfile, insert the following instructions. Change pawkey.example to your instance domain. Change the port specified if you changed the host port for your Docker container.
pawkey.example {
reverse_proxy localhost:3000
} Nginx
See Misskey’s instructions about configuring NGINX. They provide a good starting point that can be modified to fit your needs.

