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:
Disable the default server by removing
/etc/nginx/sites-enabled/default
Replace
listen
andserver_name
with the following lines:
listen 80 default_server;
server_name _;
With these settings you should be able to access gitlab.