1

I installed gitlab-ee on my ubuntu 16.04 server hosted with AWS. I am not able to launch gitlab using the external url that is mentioned in gitlab.rb file. I have apache as default webserver. I used a subdomain as external url. But when i launch that url, it is still landing on default apache page and not using nginx to launch gitlab. How to solve this issue?

1 Answer 1

2

Apache and Nginx will probably try to use the same ports (80 & 443). The first started, in your case Apache, will start normally, but the second will not initialize properly as two programs can not listen together on the same ports.

Confirm with the command sudo gitlab-ctl status nginx. This will return the status of the integrated nginx instance.

If it is stopped, stop apache and then start nginx using sudo gitlab-ctl start nginx.

Sign up to request clarification or add additional context in comments.

1 Comment

Worked, for me!: sudo service apache2 stop sudo gitlab-ctl start nginx

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.