Hi Team,
We have upgraded our gitlab CE from 14.0.5 to 14.3.3 with below process.
14.0.5 ->14.0.11->14.1.6->14.2.0->14.2.5->14.3.0->14.3.2->14.3.3
After upgrade, if we try to modify any gitlab pages html (index.html), Under settings → Pages → Access Page URL, newly updated changes are not reflecting.
But when we check from Browse from pipeline section under Public folder, new changes are working fine.
Also, newly creating Gitlab Pages,it showing 404 page under settings → Pages → Access Page URL section.
Please find the gitlab.rb file section for gitlab_pages
nginx['listen_addresses'] = ['0.0.0.0', '[::]']
nginx['listen_port'] = 80
nginx['listen_https'] = false
pages_external_url "https://mygitlab"
gitlab_pages['cert'] = "/etc/gitlab/ssl/mygitlab.crt"
gitlab_pages['cert_key'] = "/etc/gitlab/ssl/mygitlab.key"
gitlab_pages['enable'] = true
gitlab_pages['inplace_chroot'] = false
gitlab_pages['log_verbose'] = true
gitlab_pages['external_http'] = ['0.0.0.0:18090']
gitlab_pages['external_https'] = ['0.0.0.0:18443']
gitlab_pages['listen_proxy'] = nil
gitlab_pages['redirect_http'] = false
gitlab_pages['admin_secret_token'] = 'mytoken'
gitlab_pages['access_control'] = true
gitlab_pages['gitlab_id'] = 'gitlab id' # Automatically generated if not present
gitlab_pages['gitlab_secret'] = 'gitlabsecert' # Generated if not present
gitlab_pages['auth_secret'] = 'authsecert' # Generated if not present
pages_nginx['enable'] = false
Can someone help on the same, to troubleshoot and fix the issue.