gitlab使用外部nginx

  1. vim /etc/gitlab/gitlab.rb
nginx['enable'] = false
  1. gitlab-ctl reconfigure
  2. cp /var/opt/gitlab/nginx/conf/gitlab-http.conf/gitlab-http.conf /etc/nginx/conf.d
    gitlab-http.con参考:

This file is managed by gitlab-ctl. Manual changes will be

erased! To change the contents below, edit /etc/gitlab/gitlab.rb

and run sudo gitlab-ctl reconfigure.

GitLab

Modified from https://gitlab.com/gitlab-org/gitlab-ce/blob/master/lib/support/nginx/gitlab-ssl & https://gitlab.com/gitlab-org/gitlab-ce/blob/master/lib/support/nginx/gitlab

Lines starting with two hashes (##) are comments with information.

Lines starting with one hash (#) are configuration parameters that can be uncommented.

##################################

CHUNKED TRANSFER

##################################

It is a known issue that Git-over-HTTP requires chunked transfer encoding [0]

which is not supported by Nginx < 1.3.9 [1]. As a result, pushing a large object

with Git (i.e. a single large file) can lead to a 411 error. In theory you can get

around this by tweaking this configuration file and either:

- installing an old version of Nginx with the chunkin module [2] compiled in, or

- using a newer version of Nginx.

At the time of writing we do not know if either of these theoretical solutions works.

As a workaround users can use Git over SSH to push large files.

[0] https://git.kernel.org/cgit/git/git.git/tree/Documentation/technical/http-protocol.txt#n99

[1] https://github.com/agentzh/chunkin-nginx-module#status

[2] https://github.com/agentzh/chunkin-nginx-module

###################################

configuration

###################################

upstream gitlab-workhorse { server unix:/var/opt/gitlab/gitlab-workhorse/socket; }

server { listen *:80;

listen [::]:80;

server_name git.yourdomain.com; server_tokens off; ## Don't show the nginx version number, a security best practice

Increase this if you want to upload large attachments

Or if you want to accept large git objects over http

client_max_body_size 0;

Real IP Module Config

http://nginx.org/en/docs/http/ngx_http_realip_module.html

Individual nginx logs for this GitLab vhost

access_log /var/log/gitlab/nginx/gitlab_access.log ; error_log /var/log/gitlab/nginx/gitlab_error.log;

location / { ## If you use HTTPS make sure you disable gzip compression ## to be safe against BREACH attack.

## https://github.com/gitlabhq/gitlabhq/issues/694
## Some requests take more than 30 seconds.
proxy_read_timeout      3600;
proxy_connect_timeout   300;
proxy_redirect          off;
proxy_http_version 1.1;

proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto http;

proxy_pass http://gitlab-workhorse;

} error_page 404 /404.html; error_page 422 /422.html; error_page 500 /500.html; error_page 502 /502.html; location ~ ^/(404|422|500|502)(-custom)?.html$ { root /opt/gitlab/embedded/service/gitlab-rails/public; internal; }

}


`4.   vim /etc/nginx/nginx.conf`

`user nginx gitlab-www;  `

 
`5.   gitlab-ctl reconfigure && service nginx restart`


ps:OSC博客的markdown编辑有问题!

转载于:https://my.oschina.net/u/2423298/blog/883575

要将外部NginxGitLab 集成,需要进行以下步骤: 1. 安装 GitLab 并确保其运行正常。 2. 安装 Nginx 并确保其运行正常。 3. 配置 GitLab 中的 Nginx。 4. 配置 Nginx 中的 GitLab。 以下是每个步骤的详细说明: 1. 安装 GitLab 并确保其运行正常。 安装 GitLab 的过程因为环境不同而有所差异,具体可以参考 GitLab 官方文档进行配置。 2. 安装 Nginx 并确保其运行正常。 安装 Nginx 的过程因为环境不同而有所差异,具体可以参考 Nginx 官方文档进行配置。 3. 配置 GitLab 中的 Nginx。 打开 GitLab 的配置文件 `/etc/gitlab/gitlab.rb`,并添加以下代码: ``` nginx['enable'] = true nginx['client_max_body_size'] = '250m' nginx['redirect_http_to_https'] = true nginx['redirect_http_to_https_port'] = 80 nginx['ssl_certificate'] = "/etc/gitlab/ssl/gitlab.crt" nginx['ssl_certificate_key'] = "/etc/gitlab/ssl/gitlab.key" ``` 这样就可以启用 GitLab 中的 Nginx,并设置一些基本的参数。 4. 配置 Nginx 中的 GitLab。 打开 Nginx 的配置文件 `/etc/nginx/nginx.conf`,并添加以下代码: ``` upstream gitlab { server 127.0.0.1:8080; } server { listen 80; server_name gitlab.example.com; return 301 https://$server_name$request_uri; } server { listen 443 ssl; server_name gitlab.example.com; ssl_certificate /etc/nginx/ssl/gitlab.crt; ssl_certificate_key /etc/nginx/ssl/gitlab.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; location / { proxy_pass http://gitlab; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; } } ``` 这样就可以将外部NginxGitLab 集成起来,外部用户就可以通过 Nginx 访问 GitLab 了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值