Add Respository storage

Following “https://docs.gitlab.com/ee/administration/repository_storage_paths.html” i have edited gitlab.yml

from

storages: {“default”:{“path”:"/var/opt/gitlab/git-data/repositories",“gitaly_address”:“unix:/var/opt/gitlab/gitaly/gitaly.socket”}}

to

storages: {
    default:
            path: /var/opt/gitlab/git-data/repositories
    prod:
            path: /mnt/gitrepos/prod
    nprd:
            path: /mnt/gitrepos/nprd
    test:
            path: /mnt/gitrepos/test
          }

and after restarting services (gitlab-ctl restart) i see a 502 error.

Could someone advise correct format to add storages for respository?

I have resolved this issue.