Hello,
How can i prevent that the mailcow UI is shown over http connection, so i want to disable it or having it redirected to https.
i changed /data/conf/nginx/listen_plain.active as follows:
server {
listen 8080;
listen [::]:8080;
server_name _;
return 301 https://$host$request_uri;
}
but after restarting nginx (docker-compose restart nginx-mailcow) this file (listen_plain.active) was reset to its original contents:
listen 8080;
listen [::]:8080;
Many thanks in advance