Gitlab Pages's log is telling strange messages

Gitlab Pages’s log is telling strange messages. Would someone specialist tell me why it caused by ?

  • Why does the URL point to gitlab.com ? my gitlab.rb is NOT contains gitlab.com.
  • Why are gitlab opening /etc/gitlab/ssl/jmas.info.crt ? yap, NOT sepcified SSL/TLS in Pages.

===== /var/log/gitlab/gitlab-pages/current is repeating below =====

{"level":"info","msg":"GitLab Pages Daemon","revision":"61e1298","time":"2020-11-07T14:33:44+09:00","version":"1.25.0"}
{"level":"info","msg":"URL: https://gitlab.com/gitlab-org/gitlab-pages","time":"2020-11-07T14:33:44+09:00"}
{"error":"open /etc/gitlab/ssl/jmas.info.crt: no such file or directory","level":"fatal","msg":"could not read file","time":"2020-11-07T14:33:44+09:00"}
{"level":"info","msg":"GitLab Pages Daemon","revision":"61e1298","time":"2020-11-07T14:33:45+09:00","version":"1.25.0"}
{"level":"info","msg":"URL: https://gitlab.com/gitlab-org/gitlab-pages","time":"2020-11-07T14:33:45+09:00"}
{"error":"open /etc/gitlab/ssl/jmas.info.crt: no such file or directory","level":"fatal","msg":"could not read file","time":"2020-11-07T14:33:45+09:00"}

===== here’s my gitlab.rb =====

external_url 'https://git.example.cc'
################################################################################
## GitLab Pages
##! Docs: https://docs.gitlab.com/ce/pages/administration.html
################################################################################
pages_external_url "http://example.info/"
gitlab_pages['log_verbose'] = true
gitlab_pages['log_directory'] = "/var/log/gitlab/gitlab-pages"
gitlab_pages['inplace_chroot'] = true
################################################################################
## GitLab Pages NGINX
################################################################################
pages_nginx['enable'] = true
gitlab_rails['pages_path'] = "/mnt/data/pages"

That’s the URL of the Gitlab Pages Daemon repository. It doesn’t matter you are not on gitlab.com, the development of the Pages Daemon is still on Gitlab.com :slight_smile:

How do you start the daemon? Do you have an Omnibus installation, or an installation from source?

1 Like

Rpadovani, big appriciate your reply.

That’s the URL of the Gitlab Pages Daemon repository. It doesn’t matter you are not on gitlab.com, the development of the Pages Daemon is still on Gitlab.com

Okay, I understand this message doesn’t make me no sense.

How do you start the daemon? Do you have an Omnibus installation, or an installation from source?

Omnibus installation, I’m using it.

Actualy, these config with below dns(aws route53) setting are not working for me.

example.info       A       www.xxx.yyy.zzz
example.info       TXT     gitlab-pages-verification-code=00112233445566778899aabbccddeeff
*.example.info     CNAME   example.info

so I digging what do I have to do…