Skip to content

Instantly share code, notes, and snippets.

@Lemmings19
Last active February 2, 2019 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lemmings19/313393b43cc5b6959efd2ab962290927 to your computer and use it in GitHub Desktop.
Save Lemmings19/313393b43cc5b6959efd2ab962290927 to your computer and use it in GitHub Desktop.
Sendy "unlicensed domain" Error Fix On Nginx

For me, this was caused because of the Nginx server configruation. I originally had:

server {
    listen       80;
    server_name 12.168.101.224 mydomain.com www.mydomain.com;

    # the rest of the config ...
    . . .

And I fixed the error by putting my domain name first rather than the server IP:

server {
    listen       80;
    server_name mydomain.com www.mydomain.com 12.168.101.224;

    # the rest of the config ...
    . . .

Having the IP listed first confused Sendy's installer. There was no indication as to why Sendy didn't like my domain.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment