How to redirect metabase from 8443 to 443 in Nginx

hiiii!

I configured metabase to works in 8443 for example: https://metabase-teste.domain.com:8443, but i want that works https://metabase-teste.domain.com.

Anyone help me?

Hi @brunocampos87
You would have to make the redirect via the service running on port 8443, so that could be done with Nginx. This doesn't have anything to do with Metabase.

server {
  server_name .metabase-teste.domain.com;
  listen 8443;
  return 301 https://metabase-teste.domain.com$request_uri;
}

If that doesn't work, then try asking in a forum dedicated to Nginx.