Snort.social requires header HTTP access to CORS Access-Control-Allow-Origin for Lightning tips / zaps. On NGINX add to `/etc/nginx/sites-available/yourdomain` `add_header 'Access-Control-Allow-Origin' '*';` See below:
```
server {
location /.well-known/lnurlp {
rewrite ^/.well-known/lnurlp/
add_header 'Access-Control-Allow-Origin' '*';
}
}
```
> Test nginx for errors with command (might need sudo): nginx -t
> Reload nginx (might need sudo): systemctl reload nginx
In Apache2 you need to enable mod_header on server side (a2enmod headers) and then add to .htaccess or apache config file appropriately:
In .htaccess:
```
Header set Access-Control-Allow-Origin "*"
```
> Test Apache for errors with command (might need sudo): apachectl -t
> Reload Apache (might need sudo): apachectl -k graceful