diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-11-27 14:39:55 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-11-27 14:39:55 -0500 |
commit | f1710073b46c940245d38b46e5436c0745223aee (patch) | |
tree | 8ce97a8d76caff16aaf47d6017d8f1305d532b46 /lib/support | |
parent | 04049b6b17c9354555115b5d2f049daffa311c16 (diff) | |
download | gitlab-ce-f1710073b46c940245d38b46e5436c0745223aee.tar.gz |
Fix alignment
[ci skip]
Diffstat (limited to 'lib/support')
-rw-r--r-- | lib/support/nginx/gitlab | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/support/nginx/gitlab b/lib/support/nginx/gitlab index 1dfcac91cdc..2a79fbdcf93 100644 --- a/lib/support/nginx/gitlab +++ b/lib/support/nginx/gitlab @@ -144,17 +144,17 @@ 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-workhorse block - error_page 418 = @gitlab-workhorse; - return 418; + # '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-workhorse block - error_page 418 = @gitlab-workhorse; - return 418; + # 'Error' 418 is a hack to re-use the @gitlab-workhorse block + error_page 418 = @gitlab-workhorse; + return 418; } location @gitlab-workhorse { |