Hello,
I asked nearly any tutorial about an answer for my specific question. I also asked in serveral communities for an answer. The only answer I got was: “we do not use ipv6 and NGINX proxy manager. That’s quite frustrating…
All of my services are reachable via ip4 as well as ip6. But when I’m setting up NPM for proxying them only ip4 is working… There has to be a way to proxy the ip4 and ip6 addresses for the same subdomain…
Also, how to enable TLS1.3 in NPM?
Is there anyone who can answer me that question?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
Setting up NGINX for IPv6 is fairly straightforward, although before starting you need to make sure that you’ve actually enabled IPv6 on your Droplet as described here:
After that you can verify that this is actually enabled with:
After that to and IPv6, inside each Nginx server block, add:
This listens to both IPv4 and IPv6. For more information you can check out the official docs here:
You can do the same thing for port 443 as well.
Regarding your second question, to enable TLS 1.3 by adding it to the
ssl_protocols
directive in the NGINX server block for port 443:After making the chages, test the configuration with
sudo nginx -t
and if there are no errors, restart NGINX withsudo systemctl restart nginx
.Best,
Bobby