Hi
I recently install iredmail and now all my domain redirect to exemple.com/mail when i enter the domain. What can causing this? And how do i fix it?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
It’s actually redirected via Nginx, so go to the following directory:-
/etc/nginx/sites-enabled
Open file name 00-default.conf and edit the last line which will be as following:-
return 301 https://$host$request_uri;
}
replace the highlighted link to your http://example.com
You can remove the redirect by deleting /var/www/index.html
:
sudo rm /var/www/index.html
If you get a file not found
error, try deleting /var/www/html/index.html
instead.
any update guys?