我已经在 NAS(Windows 7)上的 Virtual Box 中的 ubuntu(12.04)虚拟机上安装了 gitlab
这台机器的主机名是 vubuntu。我的路由器(tomato v1.28)配置为使用 .lan 域。
在我的工作站上,我可以使用地址 vubuntu.lan 成功 ping 虚拟机
nginx 中 gitlab 的配置文件与安装文档中给出的相同,只是我更改了 listen 和 server_name 参数:
# Maintainer: @randx
# App Version: 4.0
upstream gitlab {
server unix:/home/gitlab/gitlab/tmp/sockets/gitlab.socket;
}
server {
listen 192.168.0.5:80; # e.g., listen 192.168.1.1:80;
server_name gitlab.vubuntu; # e.g., server_name source.example.com;
root /home/gitlab/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;
}
}
问题是当我访问http://gitlab.vubuntu.lan/在我的浏览器中,它说找不到该页面。
但如果我访问http://vubuntu.lan/,我有gitlab页面。
我如何才能仅使用子域名访问 gitlab?
谢谢!
答案1
首先,您需要在路由器(或 hosts 文件,尽管路由器是更好的位置)中添加一个 DNS 记录,将子域指向虚拟机。
其次,nginx 似乎正在监听该 IP 地址上的所有请求,而不管它们的地址如何,因为你只有一个配置块。从这个问题,你可以看到 nginx 只查看主机头来确定子域名后连接已建立。如果您为 添加另一个块server_name vubuntu;
,则您将无法再通过 访问 gitlab 站点vubuntu.lan
。