V8.14 - Address family not supported by protocol

After the 8.14 upgrade nginx can no longer attach to any of the ports.

2016-11-23_15:43:40.13026 2016/11/23 10:43:40 [emerg] 15108#0: socket() [::]:80 failed (97: Address family not supported by protocol)

I have even tried removing the entire gitlab.rb - so only the defaults are set and I still get the same error in nginx.

I tried only adding external_url='https://… ’ the the messages switches to [::]:443 but still cannot connect.

I am running gitlab-ctl as root and no other process is attached to 80, 443. IPv4, and IPv6 are enabled on the server (linux, centos 7)
I have also restarted the server to make sure nothing is stuck.

Any ideas on else what could be causing this?

This is solved by adding:
registry_nginx[‘listen_addresses’] = [’*’]

To the very TOP of the config.rb and reconfiguring. I had it as the last line and it did not fix the issue.