Yeah, I didn’t put it in htaccess, put it in the config file, but yeah, might be missing a parameter needed for astral.

Reply to this note

Please Login to reply.

Discussion

#[7] Any ideas on what to do here? Happy to bring you up to speed on this thread.

I think I figured out the CORS issue on snort.social with LNURL/LNAddress tips with nginx. Looking into Apache now to help you out.

Here's what I did for nginx in the /etc/nginx/sites-available/mydomain.com file I edited it to add this `add_header 'Access-Control-Allow-Origin' '*'` within the location block in the server block:

```

server {

location /.well-known/lnurlp {

rewrite ^/.well-known/lnurlp/ezofox$ https://walletofsatoshi.com/.well-known/lnurlp/ redirect;

add_header 'Access-Control-Allow-Origin' '*';

}

}

```

After that the CORS errors in the console went away and I was able to invoke it to pay the LN invocie.

If you're viewing this in astra.ninja ignore the  , it's just parsing my paste wrong for the tab spaces.