Estou com um problema ao tentar configurar Nginx
para trabalhar com gitlab
e alguns outros sites que tenho.
Eu tenho foo.com que aponta para o meu servidor. O bar.foo.com também aponta para o meu servidor. Estou tentando ter o gitlab em bar.foo.com e outro site em foo.com
Eu pensei que poderia facilmente fazer isso usando blocos de servidores e server_names, mas isso não parece estar correto.
O que tentei fazer foi definir três blocos de servidores diferentes, com nomes de servidor diferentes. Mas isso não funciona. O que acontece é que quando tento acessar foo.com
, acabo em bar.foo.com
, que é o gitlab.
Eu continuo terminando no gitlab, seja o que for que eu tente fazer. Então eu pensei que talvez a raiz devesse ir para as pastas de localização, mas isso não parece mudar nada.
Em meus sites habilitados, atualmente tenho três arquivos: gitlab, website1 e website2
Qualquer ajuda seria apreciada.
aqui está o arquivo de configuração gitlab
upstream gitlab {
server unix:/home/gitlab/gitlab/tmp/sockets/gitlab.socket;
}
server {
listen 80; # e.g., listen 192.168.1.1:80;
server_name bar.foo.com www.bar.foo.com; # 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 / {
root /home/gitlab/gitlab/public;
# 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 {
root /home/gitlab/gitlab/public;
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;
}
}
Aqui está o segundo arquivo:
server {
listen 80;
server_name foo.com www.foo.com;
index index.html index.htm;
#root /var/www/users;
location / {
root /var/www/users;
try_files $uri $uri/ /index.html;
}
}
O terceiro arquivo é muito semelhante ao segundo, então não me incomodo em postar.
Tags nginx domain web redirection