Merge pull request #1330 from joelklabo/nip5-caddy-example

Example Caddy Configuration for NIP-05 Extension
This commit is contained in:
calle 2023-01-09 12:14:41 +01:00 committed by GitHub
commit d9a13a6e30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,4 +41,19 @@ location /.well-known/nostr.json {
proxy_cache_valid 200 300s;
proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
}
```
Example Caddy configuration
```
my.lnbits.instance {
reverse_proxy {your_lnbits}
}
nip.5.domain {
route /.well-known/nostr.json {
rewrite * /nostrnip5/api/v1/domain/{domain_id}/nostr.json
reverse_proxy {your_lnbits}
}
}
```