gitlab对/api/v4/可泄露敏感信息处理

vim /etc/gitlab

在最末尾添加
nginx['custom_gitlab_server_config'] = "location /api/v4 {
                deny all;}\n"

gitlab对/api/v4/可泄露敏感信息处理_第1张图片

重新加载gitlab

gitlab-ctl reconfigure

附:限制ip访问操作


nginx['custom_gitlab_server_config'] = "location ~* (.*) {
                deny 192.168.2.109;
                allow 192.168.2.0/24;
                deny all;
                proxy_cache off;
                proxy_pass  http://gitlab-workhorse;
                root   html;
                index  index.html index.htm;}\n"

你可能感兴趣的:(gitlab,服务器,前端)