What web server are you using? Apache? Nginx? CORS is pretty simple to solve.

Apache:  ```Header set Access-Control-Allow-Origin "*"```

Nginx: ```add_header Access-Control-Allow-Origin *;```

what exactly isn't working?

You can also snag a NIP-05 if you can't get yours to work from nostrplebs.com

Reply to this note

Please Login to reply.

Discussion

Thanks! I think your questions uncover the issue. I followed a few different instructions and setup with a custom domain + GitHub pages. Using CORS testing sites, 2-of-the-3 header updates don’t seem to take. Seems the issue is that I am using a static solution and not running it on a web server.

there's some sites online that will check your headers for you in case you need to check that. web sniffer has one that's straightforward. can agree, nearly all the nip05 not working is due to CORS issues