加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 运营中心 > Nginx > 正文

如何设置nginx和子域

发布时间:2020-12-13 21:13:33 所属栏目:Nginx 来源:网络整理
导读:我在我的服务器上安装了gitlab,它适用于所有域,例如:git.lars-dev.de,lars-dev.de和* .lars-dev.de我如何才能在git.lars-dev.de上运行gitlab和files.lars-dev.de上的另一个子域名? 我的lars-dev conf: server { listen *:80; ## listen for ipv4; this li

我在我的服务器上安装了gitlab,它适用于所有域,例如:git.lars-dev.de,lars-dev.de和* .lars-dev.de我如何才能在git.lars-dev.de上运行gitlab和files.lars-dev.de上的另一个子域名?

我的lars-dev conf:

server {
    listen   *:80; ## listen for ipv4; this line is default and implied
    #listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

    root /var/www/webdata/lars-dev.de/htdocs;
    index index.html index.htm;

    server_name lars-dev.de;

    location / {
        try_files $uri $uri/ /index.html;
    }

    #error_page 500 502 503 504 /50x.html;
    #location = /50x.html {
    #   root /usr/share/nginx/www;
    #}

    # deny access to .htaccess files,if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /.ht {
    #   deny all;
    #}
}

和gitlab配置:

upstream gitlab {
  server unix:/home/git/gitlab/tmp/sockets/gitlab.socket;
}

server {
  listen *:80;         # e.g.,listen 192.168.1.1:80; In most cases *:80 is a good idea
  server_name git.lars-dev.de;     # 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;
  }
}
最佳答案
您可能将git.lars-dev.de作为默认域.因此,任何与显式配置不匹配的请求都会在那里发送(例如files.lars-dev.de).只是尝试在单独的服务器下将其指定为server_name.

阅读here,了解如何确保首先获取server_name.从server_name * .lars-dev.de开始捕获所有未明确配置的子域.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读