Hi there,
I did create a new project using this command:
ee site create www.example.com --type=wp --cache --skip-install
http://www.example.com works fine
http://example.com return the 503 error: “503 Service Temporarily Unavailable”
So I did manually create a new file in:
$ ls -la /opt/easyengine/services/nginx-proxy/conf.d
www.example.com-redirect.conf, containing:
server {
listen 80;
server_name example.com;
return 301 http://www.example.com$request_uri;
}
Doing that… my new website works as expected… but I suppose it should work without any manual settings.
Anyone knows why this issue happens?