ipv6 nginx listen is not applied after upgrade to 7.3
upstream gitlab {
server unix:/var/opt/gitlab/gitlab-rails/tmp/sockets/gitlab.socket;
}
server {
listen *:80;
listen [::]:80;
server_name vcs;
server_tokens off; # don't show the version number, a security best practice
root /opt/gitlab/embedded/service/gitlab-rails/public;
....
gitlab-ctl restart
ok: run: nginx: (pid 7325) 1s
ok: run: postgresql: (pid 7337) 0s
ok: run: redis: (pid 7346) 0s
ok: run: sidekiq: (pid 7352) 0s
ok: run: unicorn: (pid 7361) 0s
root@vcs:/var/opt/gitlab/nginx/etc# netstat -tulpen
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 9440 586/rpcbind
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 0 23775 7325/nginx
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 0 13956 1357/sshd
tcp 0 0 127.0.0.1:36759 0.0.0.0:* LISTEN 999 22718 7346/redis-server 1
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 0 12437 1162/master
tcp6 0 0 :::111 :::* LISTEN 0 9443 586/rpcbind
tcp6 0 0 :::22 :::* LISTEN 0 13958 1357/sshd
tcp6 0 0 ::1:25 :::* LISTEN 0 12438 1162/master
udp 0 0 0.0.0.0:736 0.0.0.0:* 0 9439 586/rpcbind
udp 0 0 0.0.0.0:111 0.0.0.0:* 0 9436 586/rpcbind
udp 0 0 192.168.50.23:123 0.0.0.0:* 0 13078 2432/ntpd
udp 0 0 127.0.0.1:123 0.0.0.0:* 0 13077 2432/ntpd
udp 0 0 0.0.0.0:123 0.0.0.0:* 0 13070 2432/ntpd
udp6 0 0 :::736 :::* 0 9442 586/rpcbind
udp6 0 0 :::111 :::* 0 9441 586/rpcbind
udp6 0 0 fe80::5054:ff:fe0f::123 :::* 0 13081 2432/ntpd
udp6 0 0 2001:470:72be:6:505:123 :::* 0 13080 2432/ntpd
udp6 0 0 ::1:123 :::* 0 13079 2432/ntpd
udp6 0 0 :::123 :::* 0 13071 2432/ntpd
is there any change in the nginx configuration ?
@Update fixed "/var/opt/gitlab/nginx" contains two configuration folders conf/ and etc/, shame is that there is no mark in the changelog