Allow seperate SSL certificate requests through port 80 on NPMPLUS

Post Reply
proxmoxer
Posts: 24
Joined: Sun Apr 06, 2025 9:31 pm

Allow seperate SSL certificate requests through port 80 on NPMPLUS

Post by proxmoxer »

If you have NPMPLUS and let it handle the ssl certificates for your domain, then it is quite tricky to let a subdomain on an other server handle its own ssl certificates (with certbot).

To solve this problem, in the Edit Proxt Host section...

Go to Advanced and add following:

Code: Select all

rewrite ^(/.well-known/acme-challenge/.*)$ /internal$1 last;

location ~ ^/internal(/.well-known/acme-challenge/.*)$ {
  proxy_pass http://$server$1;
}
Of course, you are pointing your subdomain here to http://ip:80

TLS set to NONE.

Access list to publicly accessible.

Nothing in custom locations.
proxmoxer
Posts: 24
Joined: Sun Apr 06, 2025 9:31 pm

Re: Allow seperate SSL certificate requests through port 80 on NPMPLUS

Post by proxmoxer »

The above one doesn't seem to work too well anymore, but this work

Code: Select all

rewrite ^(/\.well-known/acme-challenge/.*)$ /internal$1 last;

location ~ ^/internal(/\.well-known/acme-challenge/.*)$ {
    proxy_set_header Host $host;
    proxy_pass http://192.168.1.201:80$1;
}
You just need to add ur ip properly
mawes
Posts: 2
Joined: Sun Sep 20, 2026 12:51 pm

Re: Allow seperate SSL certificate requests through port 80 on NPMPLUS

Post by mawes »

I just desired to generate a quick comment in order to express gratitude to you for anyone wonderful pointers you will be posting at this site. Time consuming internet investigation has towards the end of waking time been rewarded with excellent strategies to tell my guests. I will say that most of us readers can be extremely endowed to happen in a fantastic network with methods . marvellous people who useful hints. I find myself quite privileged to own used your webpages and appear forward to really more fabulous minutes reading here. Thank you for several things. <a href="https://dolphinmusandamtours.com/musandam-dhow-cruise-overnight/">overnight dhow cruise musandam</a>
Post Reply