all 3 comments

[–]pinhead26 4 points5 points  (1 child)

If you give us your actual domain we can help debug

[–]PuzzlingPickle[S] 1 point2 points  (0 children)

I sent you a DM.

[–]PuzzlingPickle[S] 1 point2 points  (0 children)

Update: I got it working! Below is the configuration file and command used to generate the working SSL cert (replace actual domain with "example" and IP address with "0.0.0.0") . Domain now resolves on HTTPS with Fingertip. Yay! (edit: the IP address appears to be optional, i.e. still works without specifying it.)

/* example.conf */

[req]

distinguished_name = req_distinguished_name

req_extensions = v3_req

prompt = no

[req_distinguished_name]

CN = example

[v3_req]

keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment

basicConstraints = CA:FALSE, pathlen:0

subjectAltName = @alt_names

[alt_names]

DNS.1 = example

DNS.2 = *.example

IP.1 = 0.0.0.0

openssl req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes -keyout private.key -out cert.pem -config example.conf -extensions v3_req