Changing the Web port

Hello,

I have changed the web port from 80 to 8080 and when i login, the browser redirects everything to port 80 again, how do i make it stay on 8080 ?

This question is not related to Yeti. Try to configure proxy_redirect at nginx -
http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect

Or you can try to use

proxy_set_header Host $http_host;

instead of

proxy_set_header Host $host;

to inform application about custom port number.