Merge pull request #5610 from demosdemon/patch-1

Add client_max_body_size to nginx site
This commit is contained in:
Jacob Vosmaer 2013-12-02 23:29:11 -08:00
commit aa69e29e70

View file

@ -12,6 +12,9 @@ server {
server_tokens off; # don't show the version number, a security best practice
root /home/git/gitlab/public;
# Set value of client_max_body_size to at least the value of git.max_size in gitlab.yml
client_max_body_size 5m;
# individual nginx logs for this gitlab vhost
access_log /var/log/nginx/gitlab_access.log;
error_log /var/log/nginx/gitlab_error.log;