Hello.
I added AAAA records for the domain, configured the nginx web server as follows:
server { listen [::]:80 ipv6only=on; listen 80; server_name example.com www.example.com; root /var/www/default; location / { try_files $uri $uri/ =404; } } default:
server { listen 80 default_server; #listen [::]:80 ipv6only=on default_server; server_name localhost; root /var/www/default; location / { try_files $uri $uri/ =404; } location ^~ /pma/ { alias /usr/share/phpmyadmin/; index index.php index.html; location ~ /pma(/.*\.php) { include fastcgi_params; fastcgi_param SERVER_NAME localhost; fastcgi_param SCRIPT_FILENAME /usr/share/phpmyadmin$1; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; } } } But the site still does not work, gives an error 502. Hosters say that I have not added an address to the server, but I don’t quite understand where to add it, I configure ipv6 for the first time.