[Gitlab]Where can I find Gitlab Pages hosted on my private Gitlab instance?












5















I tried to set up Gitlab Pages, until now I finished uploading my static website files👇



Uploading artifacts...
coverage/lcov-report: found 77 matching files
Uploading artifacts to coordinator... ok id=1038 responseStatus=201 Created token=QXJjgkf2


But I got no idea where my page hosted.



I took a glance at this documentation but it was still vague to me.




  • I have a private Gitlab instance.

  • My Gitlab entry is under http://abc.def.com (I configured a type A DNS to my host IP 111.111.111.111, a reverse proxy pointing at localhost:9000).

  • My project project1 is under my team team1.

  • I have also configured DNS http://team1.abc.def.com to 111.111.111.111 , and there is a nginx reverse proxy on my server which http://team1.abc.def.com -> localhost:9000.


I assume I should see my static page available on http://team1.abc.def.com/project1 , but nothing was there. Where exactly are my pages hosted?










share|improve this question























  • Did you manage to make it work, I have the same issue here!

    – Jeremad
    Nov 22 '18 at 9:29
















5















I tried to set up Gitlab Pages, until now I finished uploading my static website files👇



Uploading artifacts...
coverage/lcov-report: found 77 matching files
Uploading artifacts to coordinator... ok id=1038 responseStatus=201 Created token=QXJjgkf2


But I got no idea where my page hosted.



I took a glance at this documentation but it was still vague to me.




  • I have a private Gitlab instance.

  • My Gitlab entry is under http://abc.def.com (I configured a type A DNS to my host IP 111.111.111.111, a reverse proxy pointing at localhost:9000).

  • My project project1 is under my team team1.

  • I have also configured DNS http://team1.abc.def.com to 111.111.111.111 , and there is a nginx reverse proxy on my server which http://team1.abc.def.com -> localhost:9000.


I assume I should see my static page available on http://team1.abc.def.com/project1 , but nothing was there. Where exactly are my pages hosted?










share|improve this question























  • Did you manage to make it work, I have the same issue here!

    – Jeremad
    Nov 22 '18 at 9:29














5












5








5


1






I tried to set up Gitlab Pages, until now I finished uploading my static website files👇



Uploading artifacts...
coverage/lcov-report: found 77 matching files
Uploading artifacts to coordinator... ok id=1038 responseStatus=201 Created token=QXJjgkf2


But I got no idea where my page hosted.



I took a glance at this documentation but it was still vague to me.




  • I have a private Gitlab instance.

  • My Gitlab entry is under http://abc.def.com (I configured a type A DNS to my host IP 111.111.111.111, a reverse proxy pointing at localhost:9000).

  • My project project1 is under my team team1.

  • I have also configured DNS http://team1.abc.def.com to 111.111.111.111 , and there is a nginx reverse proxy on my server which http://team1.abc.def.com -> localhost:9000.


I assume I should see my static page available on http://team1.abc.def.com/project1 , but nothing was there. Where exactly are my pages hosted?










share|improve this question














I tried to set up Gitlab Pages, until now I finished uploading my static website files👇



Uploading artifacts...
coverage/lcov-report: found 77 matching files
Uploading artifacts to coordinator... ok id=1038 responseStatus=201 Created token=QXJjgkf2


But I got no idea where my page hosted.



I took a glance at this documentation but it was still vague to me.




  • I have a private Gitlab instance.

  • My Gitlab entry is under http://abc.def.com (I configured a type A DNS to my host IP 111.111.111.111, a reverse proxy pointing at localhost:9000).

  • My project project1 is under my team team1.

  • I have also configured DNS http://team1.abc.def.com to 111.111.111.111 , and there is a nginx reverse proxy on my server which http://team1.abc.def.com -> localhost:9000.


I assume I should see my static page available on http://team1.abc.def.com/project1 , but nothing was there. Where exactly are my pages hosted?







gitlab gitlab-ci gitlab-ci-runner






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 21 '17 at 17:15









KimKim

1,44621334




1,44621334













  • Did you manage to make it work, I have the same issue here!

    – Jeremad
    Nov 22 '18 at 9:29



















  • Did you manage to make it work, I have the same issue here!

    – Jeremad
    Nov 22 '18 at 9:29

















Did you manage to make it work, I have the same issue here!

– Jeremad
Nov 22 '18 at 9:29





Did you manage to make it work, I have the same issue here!

– Jeremad
Nov 22 '18 at 9:29












3 Answers
3






active

oldest

votes


















0














You'll need to ask your sysadmin under which wildcard domain Pages is served: https://docs.gitlab.com/ce/user/project/pages/getting_started_part_one.html#gitlab-pages-domain



Then you'll know where your site was deployed to.



Example: on GitLab.com, all Pages domains are served under *.gitlab.io, therefore, your website will be deployed to username.gitlab.io (user/group site) or to username.gitlab.io/project-name (project website).



You need to find out the wildcard domain of your GitLab instance and replace gitlab.io with it.



See also: Pages' limitations: https://docs.gitlab.com/ce/user/project/pages/introduction.html#limitations






share|improve this answer

































    -1














    For gitlab pages to work, you need to put your website files (html, CSS etc.) in a folder named public.



    Update your .gitlab-ci.yml file with something like the following



    pages:
    script:
    - mv coverage/lcov-report public
    artifacts:
    paths:
    - public


    Also, remember to name the job in question pages






    share|improve this answer
























    • Once you've done that where exactly are your pages hosted?

      – Pierre.Sassoulas
      Mar 9 '18 at 14:10






    • 1





      @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

      – Jawad
      Mar 9 '18 at 14:23





















    -1














    You have to activate the pages feature. In your gitlab.rb:



    pages_external_url "IP_OF_YOUR_GITLAB"
    gitlab_pages['enable'] = true


    There is a tutorial: https://www.youtube.com/watch?v=dD8c7WNcc6s&feature=youtu.be
    And the complete documentation: https://docs.gitlab.com/ce/administration/pages/index.html






    share|improve this answer


























    • Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

      – Shree
      Nov 22 '18 at 11:00











    • you're right, you can remove your down-vote ;)

      – Jeremad
      Nov 22 '18 at 13:00











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43548523%2fgitlabwhere-can-i-find-gitlab-pages-hosted-on-my-private-gitlab-instance%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You'll need to ask your sysadmin under which wildcard domain Pages is served: https://docs.gitlab.com/ce/user/project/pages/getting_started_part_one.html#gitlab-pages-domain



    Then you'll know where your site was deployed to.



    Example: on GitLab.com, all Pages domains are served under *.gitlab.io, therefore, your website will be deployed to username.gitlab.io (user/group site) or to username.gitlab.io/project-name (project website).



    You need to find out the wildcard domain of your GitLab instance and replace gitlab.io with it.



    See also: Pages' limitations: https://docs.gitlab.com/ce/user/project/pages/introduction.html#limitations






    share|improve this answer






























      0














      You'll need to ask your sysadmin under which wildcard domain Pages is served: https://docs.gitlab.com/ce/user/project/pages/getting_started_part_one.html#gitlab-pages-domain



      Then you'll know where your site was deployed to.



      Example: on GitLab.com, all Pages domains are served under *.gitlab.io, therefore, your website will be deployed to username.gitlab.io (user/group site) or to username.gitlab.io/project-name (project website).



      You need to find out the wildcard domain of your GitLab instance and replace gitlab.io with it.



      See also: Pages' limitations: https://docs.gitlab.com/ce/user/project/pages/introduction.html#limitations






      share|improve this answer




























        0












        0








        0







        You'll need to ask your sysadmin under which wildcard domain Pages is served: https://docs.gitlab.com/ce/user/project/pages/getting_started_part_one.html#gitlab-pages-domain



        Then you'll know where your site was deployed to.



        Example: on GitLab.com, all Pages domains are served under *.gitlab.io, therefore, your website will be deployed to username.gitlab.io (user/group site) or to username.gitlab.io/project-name (project website).



        You need to find out the wildcard domain of your GitLab instance and replace gitlab.io with it.



        See also: Pages' limitations: https://docs.gitlab.com/ce/user/project/pages/introduction.html#limitations






        share|improve this answer















        You'll need to ask your sysadmin under which wildcard domain Pages is served: https://docs.gitlab.com/ce/user/project/pages/getting_started_part_one.html#gitlab-pages-domain



        Then you'll know where your site was deployed to.



        Example: on GitLab.com, all Pages domains are served under *.gitlab.io, therefore, your website will be deployed to username.gitlab.io (user/group site) or to username.gitlab.io/project-name (project website).



        You need to find out the wildcard domain of your GitLab instance and replace gitlab.io with it.



        See also: Pages' limitations: https://docs.gitlab.com/ce/user/project/pages/introduction.html#limitations







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Apr 23 '17 at 13:59

























        answered Apr 23 '17 at 13:48









        Virtua CreativeVirtua Creative

        1,2551514




        1,2551514

























            -1














            For gitlab pages to work, you need to put your website files (html, CSS etc.) in a folder named public.



            Update your .gitlab-ci.yml file with something like the following



            pages:
            script:
            - mv coverage/lcov-report public
            artifacts:
            paths:
            - public


            Also, remember to name the job in question pages






            share|improve this answer
























            • Once you've done that where exactly are your pages hosted?

              – Pierre.Sassoulas
              Mar 9 '18 at 14:10






            • 1





              @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

              – Jawad
              Mar 9 '18 at 14:23


















            -1














            For gitlab pages to work, you need to put your website files (html, CSS etc.) in a folder named public.



            Update your .gitlab-ci.yml file with something like the following



            pages:
            script:
            - mv coverage/lcov-report public
            artifacts:
            paths:
            - public


            Also, remember to name the job in question pages






            share|improve this answer
























            • Once you've done that where exactly are your pages hosted?

              – Pierre.Sassoulas
              Mar 9 '18 at 14:10






            • 1





              @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

              – Jawad
              Mar 9 '18 at 14:23
















            -1












            -1








            -1







            For gitlab pages to work, you need to put your website files (html, CSS etc.) in a folder named public.



            Update your .gitlab-ci.yml file with something like the following



            pages:
            script:
            - mv coverage/lcov-report public
            artifacts:
            paths:
            - public


            Also, remember to name the job in question pages






            share|improve this answer













            For gitlab pages to work, you need to put your website files (html, CSS etc.) in a folder named public.



            Update your .gitlab-ci.yml file with something like the following



            pages:
            script:
            - mv coverage/lcov-report public
            artifacts:
            paths:
            - public


            Also, remember to name the job in question pages







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Apr 21 '17 at 20:03









            JawadJawad

            2,1101920




            2,1101920













            • Once you've done that where exactly are your pages hosted?

              – Pierre.Sassoulas
              Mar 9 '18 at 14:10






            • 1





              @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

              – Jawad
              Mar 9 '18 at 14:23





















            • Once you've done that where exactly are your pages hosted?

              – Pierre.Sassoulas
              Mar 9 '18 at 14:10






            • 1





              @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

              – Jawad
              Mar 9 '18 at 14:23



















            Once you've done that where exactly are your pages hosted?

            – Pierre.Sassoulas
            Mar 9 '18 at 14:10





            Once you've done that where exactly are your pages hosted?

            – Pierre.Sassoulas
            Mar 9 '18 at 14:10




            1




            1





            @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

            – Jawad
            Mar 9 '18 at 14:23







            @Pierre.Sassoulas Have you set up Pages from an admin perspective? docs.gitlab.com/ce/administration/pages/index.html

            – Jawad
            Mar 9 '18 at 14:23













            -1














            You have to activate the pages feature. In your gitlab.rb:



            pages_external_url "IP_OF_YOUR_GITLAB"
            gitlab_pages['enable'] = true


            There is a tutorial: https://www.youtube.com/watch?v=dD8c7WNcc6s&feature=youtu.be
            And the complete documentation: https://docs.gitlab.com/ce/administration/pages/index.html






            share|improve this answer


























            • Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

              – Shree
              Nov 22 '18 at 11:00











            • you're right, you can remove your down-vote ;)

              – Jeremad
              Nov 22 '18 at 13:00
















            -1














            You have to activate the pages feature. In your gitlab.rb:



            pages_external_url "IP_OF_YOUR_GITLAB"
            gitlab_pages['enable'] = true


            There is a tutorial: https://www.youtube.com/watch?v=dD8c7WNcc6s&feature=youtu.be
            And the complete documentation: https://docs.gitlab.com/ce/administration/pages/index.html






            share|improve this answer


























            • Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

              – Shree
              Nov 22 '18 at 11:00











            • you're right, you can remove your down-vote ;)

              – Jeremad
              Nov 22 '18 at 13:00














            -1












            -1








            -1







            You have to activate the pages feature. In your gitlab.rb:



            pages_external_url "IP_OF_YOUR_GITLAB"
            gitlab_pages['enable'] = true


            There is a tutorial: https://www.youtube.com/watch?v=dD8c7WNcc6s&feature=youtu.be
            And the complete documentation: https://docs.gitlab.com/ce/administration/pages/index.html






            share|improve this answer















            You have to activate the pages feature. In your gitlab.rb:



            pages_external_url "IP_OF_YOUR_GITLAB"
            gitlab_pages['enable'] = true


            There is a tutorial: https://www.youtube.com/watch?v=dD8c7WNcc6s&feature=youtu.be
            And the complete documentation: https://docs.gitlab.com/ce/administration/pages/index.html







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 22 '18 at 12:59

























            answered Nov 22 '18 at 10:57









            JeremadJeremad

            1701110




            1701110













            • Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

              – Shree
              Nov 22 '18 at 11:00











            • you're right, you can remove your down-vote ;)

              – Jeremad
              Nov 22 '18 at 13:00



















            • Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

              – Shree
              Nov 22 '18 at 11:00











            • you're right, you can remove your down-vote ;)

              – Jeremad
              Nov 22 '18 at 13:00

















            Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

            – Shree
            Nov 22 '18 at 11:00





            Jeremad, while this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Answers that are little more than a link may be deleted.

            – Shree
            Nov 22 '18 at 11:00













            you're right, you can remove your down-vote ;)

            – Jeremad
            Nov 22 '18 at 13:00





            you're right, you can remove your down-vote ;)

            – Jeremad
            Nov 22 '18 at 13:00


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43548523%2fgitlabwhere-can-i-find-gitlab-pages-hosted-on-my-private-gitlab-instance%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            To store a contact into the json file from server.js file using a class in NodeJS

            Redirect URL with Chrome Remote Debugging Android Devices

            Dieringhausen