diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-11-09 12:55:32 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-11-10 12:51:51 +0100 |
commit | 7e4e3fb3b6177d2863580786e9ef6ee3a4ccf037 (patch) | |
tree | 16c465eea9b600b702b1ef65202742789ccc02a8 /lib/support/nginx/gitlab-ssl | |
parent | 445cdb7579792d0d76c2562b971583bd7d05429b (diff) | |
download | gitlab-ce-7e4e3fb3b6177d2863580786e9ef6ee3a4ccf037.tar.gz |
Fix nginx config to use @gitlab-workhorse
Diffstat (limited to 'lib/support/nginx/gitlab-ssl')
-rw-r--r-- | lib/support/nginx/gitlab-ssl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/support/nginx/gitlab-ssl b/lib/support/nginx/gitlab-ssl index 47b1ec8cb0c..b463d5b6aa9 100644 --- a/lib/support/nginx/gitlab-ssl +++ b/lib/support/nginx/gitlab-ssl @@ -181,16 +181,16 @@ server { # Build artifacts should be submitted to this location location ~ ^/[\w\.-]+/[\w\.-]+/builds/download { client_max_body_size 0; - # 'Error' 418 is a hack to re-use the @gitlab-git-http-server block - error_page 418 = @gitlab-git-http-server; + # 'Error' 418 is a hack to re-use the @gitlab-workhorse block + error_page 418 = @gitlab-workhorse; return 418; } # Build artifacts should be submitted to this location location ~ /ci/api/v1/builds/[0-9]+/artifacts { client_max_body_size 0; - # 'Error' 418 is a hack to re-use the @gitlab-git-http-server block - error_page 418 = @gitlab-git-http-server; + # 'Error' 418 is a hack to re-use the @gitlab-workhorse block + error_page 418 = @gitlab-workhorse; return 418; } |