There isn’t a lot of special requirements here. I followed the standard Nginx Proxy Manager install and the standard CloudPanel install. When you create your proxy host in NPM, you have to add the config below in the advanced section.
Some may ask why CloudPanel behind NPM? Here’s why – I host my VMs at home. I use a VM at Vultr + Wireguard to get them public internet access (one of my ISPs blocks incoming ports and the other router doesn’t allow port forwarding or bridge mode. I also have other services using the same setup. So this keeps my setup cheap. One small VM in Vultr for a public IP and I can host as many domains as I want with NPM. CloudPanel is just my web host. I can have other stuff out there too.
location / {
proxy_pass $forward_scheme://$server:$port;
proxy_set_header Host $host;
proxy_ssl_name $host;
proxy_ssl_server_name on;
proxy_redirect $forward_scheme://$server:$port /;
}
References:
https://www.reddit.com/r/nginxproxymanager/comments/11ob47i/cloudpanelio_has_anyone_successfully_configured/
https://nginxproxymanager.com/guide/
https://www.cloudpanel.io/docs/v2/getting-started/