How to configure Nginx Proxy Manager correctly to use v6?

Currently in the "Advanced" tab I have the configuration below. When studying the new API I discovered that although I have the return 200 for some reason it does not work via NPM, and directly via IP it works normally.

Do I have to do any other configuration? It seems that when sending the data to, for example, the POST /api/dns/blocking route, it seems that the backend receives it as GET /api/dns/blocking

Not making any changes, but just returning the current status. I tried as I found here Use nginx reverse proxy - #6 by tefracky but without success.

I am not using it for external access, but only an SSL domain with Duckdns within my own LAN
location = / {
return 301 $scheme://$host/admin;
}

Same issue here, v6 broke my reverse proxy.

Edit: you have to expose /api

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.