I don't know if this is the "right" way to fix it, but I did this:
- remove "default" configuration from /etc/nginx/sites-enabled
- in /etc/nginx/sites-enabled config there are two lines you need to uncomment
Then, the pièce de résistance is to add your mapped domain to the beginning of the server_name line.
In my case the nginx/sites-enabled config looks like this:
`server {
# Uncomment the following line for domain mapping
listen 80 default_server;
server_name www.richpav.xyz happysmileyenglish.com *.happysmileyenglish.com;
# Uncomment the following line for domain mapping
server_name_in_redirect off;
`
Hope that helps. I'm only on my second day with easyengine.