Recreated LFS storage: Access forbidden

Hi.

I have own GitLab CE 11.8.0 installation on Debian as a VMware virtual machine. I wanted to try LFS functionality, so I added new 5GB disk and mounted it as /lfs. Then I created repository milo/www and tried LFS. Everything worked just fine. 2GB file was in /lfs subdirectories.

Then I unmounted /lfs disk and deleted it whole (that was mistake I realized few seconds after). So I created new 100GB disk and mounted it as /lfs again. Run gitlab-ctl renconfigure and gitlab-ctl restart, deleted repo milo/www and created it again. But when I push to the repo, I get:

$ git push
LFS: Access forbidden. Check your access level.
error: failed to push some refs to 'git@example.com:milo/www.git'

I have no idea how to fix it. I spent few hours with that problem and didn’t solve anything. With GIT_TRACE=1 I can see repetitve message:

git-lfs: api: batch 1 files
git-lfs: HTTP: POST https://example.com/milo/www.git/info/lfs/objects/batch
git-lfs: HTTP: 200
git-lfs: HTTP: {"objects":[{"oid":"811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd","size":308178,"actions":{"upload":{"href":"https://example.com/milo/www.git/gitlab-lfs/objects/811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd/308178","header":{"Authorization":"Basic bWlsbzpleUpoYkdjaU9pSklVekkxTmlJc0luUjVjQ0k2SWtwWFZDSjkuZXlKa1lYUmhJanA3SW1GamRHOXlJam9pYldsc2J5SjlMQ0pxZEdraU9pSmhObVV6WWpOa05TMHpabVUxTFRSalltUXRZVGRoWkMwNU1UZzNZbVk0Tnpaa05EWWlMQ0pwWVhRaU9qRTFOVEV4TVRBM056QXNJbTVpWmlJ
git-lfs: HTTP: Nk1UVTFNVEV4TURjMk5Td2laWGh3SWpveE5UVXhNVEV5TlRjd2ZRLjljZ0ZZallJc2JrS0hjTXcxSnR5emVlOUFsRm8ybktyYUQ2a0MxeGo2WkE=","Content-Type":"application/octet-stream"}}}}]}
git-lfs: tq: starting transfer adapter "basic"
git-lfs: HTTP: PUT https://example.com/milo/www.git/gitlab-lfs/objects/811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd/308178
git-lfs: HTTP: 403
git-lfs: HTTP: {"message":"Access forbidden. Check your access level.","documentation_url":"https://example.com/help"}
git-lfs: tq: retrying object 811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd: LFS: Access forbidden. Check your access level.
git-lfs: tq: enqueue retry #1 for "811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd" (size: 308178)
git-lfs: tq: sending batch of size 1
git-lfs: ssh cache: git@example.com git-lfs-authenticate milo/www.git upload
git-lfs: api: batch 1 files
git-lfs: HTTP: POST https://example.com/milo/www.git/info/lfs/objects/batch
git-lfs: HTTP: 200
git-lfs: HTTP: {"objects":[{"oid":"811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd","size":308178,"actions":{"upload":{"href":"https://example.com/milo/www.git/gitlab-lfs/objects/811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd/308178","header":{"Authorization":"Basic bWlsbzpleUpoYkdjaU9pSklVekkxTmlJc0luUjVjQ0k2SWtwWFZDSjkuZXlKa1lYUmhJanA3SW1GamRHOXlJam9pYldsc2J5SjlMQ0pxZEdraU9pSmhObVV6WWpOa05TMHpabVUxTFRSalltUXRZVGRoWkMwNU1UZzNZbVk0Tnpaa05EWWlMQ0pwWVhRaU9qRTFOVEV4TVRBM056QXNJbTVpWmlJ
git-lfs: HTTP: Nk1UVTFNVEV4TURjMk5Td2laWGh3SWpveE5UVXhNVEV5TlRjd2ZRLjljZ0ZZallJc2JrS0hjTXcxSnR5emVlOUFsRm8ybktyYUQ2a0MxeGo2WkE=","Content-Type":"application/octet-stream"}}}}]}
git-lfs: tq: starting transfer adapter "basic"
git-lfs: HTTP: PUT https://example.com/milo/www.git/gitlab-lfs/objects/811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd/308178
git-lfs: HTTP: 403
git-lfs: HTTP: {"message":"Access forbidden. Check your access level.","documentation_url":"https://example.com/help"}
git-lfs: tq: retrying object 811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd: LFS: Access forbidden. Check your access level.
git-lfs: tq: enqueue retry #2 for "811ff7d306434a65f3cff871ea43860466376ab3bfed7dbabaf0266bf57827bd" (size: 308178)
git-lfs: tq: sending batch of size 1
git-lfs: ssh cache: git@example.com git-lfs-authenticate milo/www.git upload

The gitlab-clt tail is full of production message, but I can find 403 HTTP responses in here but not any details.

Could you please hint me, how to fix the LFS storage?