404 error on uploaded files after upgrade from 7.4 to 7.5
After upgrading to Gitlab CE 7.5 following the documentation, the uploaded files (avatar images, files attached to issues…) are unavailable.
I found the solution in a comment of an old closed issue.
The author of this comment suggests to change the line
location /uploads/ {
to
location uploads/ {
in the nginx config file (see the proposed gitlab file on master in lib/support/nginx/gitlab
).
Is this the right fix?