Hi, i have installed mattermost in ubuntu and using nginx , want to access mattermost with my domain … like https://mydomain/mattermost but error in browser too much redirect… please help me !!! below is my nginx configuration where location / is running different project
server {
listen 443 ssl;
server_name mydomain.com;
location / {
proxy_pass http://myip:500/; /* another project running */
}
location /abc/ {
proxy_pass http://myip:8005/; /* another project*/
}
location /mattermost/ {
proxy_pass http://myip:8065/;
}
}
i have alos set in config.json the SiteURl https://mydomain.com/mattermost
but not working !! error in browser TOO MUCH REDIRECT