Featured image of post Enabling IPV6 Resolution Support in aapanel and Baota Panel

Enabling IPV6 Resolution Support in aapanel and Baota Panel

Prerequisite: Your server must support IPV6. Use the command 'ip addr' to check if IPV6 is enabled on your server. If you see the following as in the image, it indicates that IPV6 is available.

Prerequisite

Your server must support IPV6. Use the command ip addr to see if IPV6 is enabled. If you see something like the image below, it means that IPV6 is available.

Enabling IPV6 Resolution Support in aapanel and Baota Panel

Method to Enable IPV6 Support in the Panel

  1. For Baota Panel: Go to panel settings and then click on “Listen IPV6”.

Enabling IPV6 Resolution Support in aapanel and Baota Panel

  1. For aapanel: Navigate to Settings -> Panel Settings -> enable IPV6.

Enabling IPV6 Resolution Support in aapanel and Baota Panel

With that, the panel configuration is complete.

Setting IPV6 Support for the Website

Go to Website -> Settings -> config and replace

1
2
3
|  | listen 80; |
| --- | --- |
|  | listen 443 ssl http2; |

with

1
2
3
4
5
|  | listen 80; |
| --- | --- |
|  | listen [::]:80; |
|  | listen 443 ssl http2; |
|  | listen [::]:443 ssl http2; |

Then, restart Nginx, and you’re all set!

Licensed under CC BY-NC-SA 4.0