Hi.
I’m trying to add redirects from old communicated links (like /roundcube) to their respective new locations (like /SOGo) on the new mailcow server.
As i understand it, the way to go is to create an override/extension file in ./data/conf/nginx/ named site.<somename>.custom. Like site.roundcube.custom. But at least this does not work:
`location = /roundcube {
return 301 /SOGo;
}
location ^~ /roundcube/ {
return 301 /SOGo;
}
`
nginx -T does not reflect my changes.
Any suggestions?
btw, i use the mailcow for docker