I have a server that hosts ONLY the node backend (I'm using express) of my website in a machine in my house and I want to call this server from another backend (we're trying to build an API system that can help us with our main backend).
I need an SSL certificate and I need to verify it using a CA but I'm stuck at this point. How can I verify the SSL? I tried to use zeroSSL but it doesn't work because I'm trying to sign a certificate for an ip address since I don't have a DNS.
Example: I want to call my endpoint not like this
http://X.X.X.X:port#/endpoint
But like this:
https://X.X.X.X:port#/endpoint
Any help would be appreciated.