How can I set the official app listen to ipv6 address in Scale EE(24.10)?

Currently the docker version of official app only listen to tcp:0.0.0.0:port, however I need the app like wg-easy listen to ipv6 address to accept public access, as I only have public ipv6 address.

I did not find any relate option under the app config page, the network section.

I wonder if it will be available in the future update? or could it be enable by environment variable/parameter?

[NAS-131333] - iXsystems TrueNAS Jira (atlassian.net)

You can add your support to the feature request here

Based on my tests in RC2,
IPv6 for the Docker network bridge works properly.
However, for SLAAC IPv6,
You need to set net.ipv6.conf.“your_interface”.accept_ra=2.
This can be easily added through WebUI → System → Advanced → Sysctl.

The reason is that enabling IPv6 for Docker automatically sets net.ipv6.conf.all.forwarding=1. The default value of net.ipv6.conf.“your_interface”.accept_ra=1 stops receiving RA once forwarding is enabled.

English is not my native language, so there may be some expression errors.