如何更改 NGINX 站点网址



我的ngix站点配置文件(/etc/nginx/sites-enabled/)如下所示。现在我可以通过访问localhost来访问这个网站,但我想知道如何将网站网址更改为localhost/gitlab。我需要为其他网站保留localhost

upstream gitlab {
  server unix:/home/git/gitlab/tmp/sockets/gitlab.socket;
}
server {
#  listen *:80 default_server;         # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
  server_name localhost;     # e.g., server_name source.example.com;
  server_tokens off;     # don't show the version number, a security best practice
  root /home/git/gitlab/public;
  # individual nginx logs for this gitlab vhost
  access_log  /var/log/nginx/gitlab_access.log;
  error_log   /var/log/nginx/gitlab_error.log;
  location / {
    # serve static files from defined root folder;.
    # @gitlab is a named location for the upstream fallback, see below
    try_files $uri $uri/index.html $uri.html @gitlab;
  }
  # if a file, which is not found in the root folder is requested,
  # then the proxy pass the request to the upsteam (gitlab unicorn)
  location @gitlab {
    proxy_read_timeout 300; # https://github.com/gitlabhq/gitlabhq/issues/694
    proxy_connect_timeout 300; # https://github.com/gitlabhq/gitlabhq/issues/694
    proxy_redirect     off;
    proxy_set_header   X-Forwarded-Proto $scheme;
    proxy_set_header   Host              $http_host;
    proxy_set_header   X-Real-IP         $remote_addr;
    proxy_pass http://gitlab;
  }
}

更新:GitLab 现在对相对 URL 和专用文档有更好的支持:

  • 源安装 http://docs.gitlab.com/ee/install/relative_url.html
  • 综合套餐 https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-a-relative-url-for-gitlab

您希望在相对 URL 中移动 GitLab。请记住,除了 nginx 配置之外,您还必须在其他 3 个地方更改 url。请参阅gitlab.yml中的说明:

# Uncomment and customize the last line to run in a non-root path
# WARNING: This feature is known to work, but unsupported
# Note that three settings need to be changed for this to work.
# 1) In your application.rb file: config.relative_url_root = "/gitlab"
# 2) In your gitlab.yml file: relative_url_root: /gitlab
# 3) In your unicorn.rb: ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"

所有这些配置都在 /home/git/gitlab/config .

我不知道

这些答案是否对OP成功,但对我来说没有任何效果:

  • location一起贩运...
  • 取消注释具有相对URL等的文件。

我确实发现了一个既优雅又简洁的"调整",但要求您有一个注册域名(不适合本地 IP 192.168.0.x):

  1. 设置指向服务器 IP(与主域相同)的 DNS A 区域:
    gitlab.mydomain.me
  2. server_name mydomain.me更新为 /etc/nginx/sites-available/gitlab 中的server_name gitlab.mydomain.me;
  3. 重新启动 nginx : sudo service nginx restart .

您现在有一个有效的 gitlab 子域,并且您的"主"域是免费的。

好吧,您实际上并没有更改站点名称,而是将其移动到子目录,因此您可以轻松更改

location / { ... }

成为子目录

location /gitlab { ... } 

并重新加载nginx,然后它应该可以工作,但是您需要确保如果网站没有创建相对URL,那么您需要更改其配置,以便它不会创建将您移出/gitlab目录的链接。

最新更新