We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e989d6 + 04a6ff6 commit cf9c977Copy full SHA for cf9c977
web-server/nginx/gitlab-ssl
@@ -43,6 +43,10 @@ server {
43
server_tokens off;
44
root /home/git/gitlab/public;
45
46
+ # Increase this if you want to upload large attachments
47
+ # Or if you want to accept large git objects over http
48
+ client_max_body_size 20m;
49
+
50
ssl on;
51
ssl_certificate /etc/nginx/gitlab.crt;
52
ssl_certificate_key /etc/nginx/gitlab.key;
@@ -75,4 +79,6 @@ server {
75
79
76
80
proxy_pass http://gitlab;
77
81
}
78
-}
82
83
+ error_page 502 /502.html;
84
+}
0 commit comments