How do I configure Apache 2 to front end requests to mattermost installed using the gitlab-omnibus package?
I’ve already disabled nginx in the gitlab.rb file
nginx[‘enable’] = false
and have added an Apache 2 configuration file that’s proxying to 8080 for gitlab.example.org and that’s working fine.
I’ve added the line to start mattermost in gitlab.rb
mattermost_external_url ‘http://mattermost.example.org’
and I can see it started with gitlab-ctl status. I’ve also configured the DNS so gitlab.example.org and mattermost.example.org point to the same box where the omnibus package is installed. I’ve configured Apache 2 to proxy matterermost.example.org also on port 8080, but that just serves up gitlab.example.org.
Is there a different port that mattermost is running on that I need to proxy instead?
Thanks,
Vernon