- Edited
Yesterday I just updated the mailcow as it was a new Moorch 2025 Update. I understood that SOGo is now just / and /admin has to be admin panel.
I am using Nginx reverse proxy where earlier I was redirecting my domain to /SOGo with the following (after update I commented the redirection so that it directly goes to default.):
location / {
#rewrite ^/$ /SOGo/;
proxy_pass http://127.0.0.1:18080;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 0;
proxy_buffer_size 512k;
proxy_buffers 128 2048k;
proxy_busy_buffers_size 2048k;
}
}`
Yes, mailcow.conf contains http port binding to 18080 which had been working since many years.
But after update, nginx restarting, docker restarting, server itself restarting process, the mailcow UI is not coming on the screen. Neither the default UI not the /admin panel nothing is coming on the screen.
if anyone can help on this.