重新创建gitlabs nginx conf文件

前端之家收集整理的这篇文章主要介绍了重新创建gitlabs nginx conf文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我刚刚删除了我的gitlab omnibus Nginx conf文件.是否可以重新创建?

使用gitlab-ci reconfigure似乎不起作用.但是我看到一些ruby模板负责创建Nginx conf

最佳答案
如上所述,nginx-gitlab-http.conf由sudo gitlab-ctl reconfigure管理.

请注意,它被称为Nginx-gitlab-http.conf,而不是gitlab-http.conf.
它在gitlab-cookbooks/gitlab/recipes/nginx.rb中用于生成gitlab-http.conf

在gitlab-ctl重新配置后,您应该看到:

Recipe: gitlab::Nginx
  * directory[/var/opt/gitlab/Nginx] action create (up to date)
  * directory[/var/opt/gitlab/Nginx/etc] action create (up to date)
  * directory[/var/log/gitlab/Nginx] action create (up to date)
  * template[/var/opt/gitlab/Nginx/etc/gitlab-http.conf] action create (up to date)
  ...

仔细检查/etc/gitlab/gitlab.rb是否存在任何差异,这可能解释了为什么不重新创建此文件的原因.

确保执行sudo(如在sudo gitlab-ctl reconfigure中)以避免任何权限问题.

原文链接:https://www.f2er.com/nginx/434962.html

猜你在找的Nginx相关文章