Installed gitlab-ci but only nginx welcome page shows

Solution 1:

If you are not planning to host additional domains on the same server, you can make this gitlab instance the default virtualhost with these instructions:

  1. Disable the default server by removing /etc/nginx/sites-enabled/default

  2. Replace listen and server_name with the following lines:

listen 80 default_server;

server_name _;

With these settings you should be able to access gitlab.