Hi,
trying to install MM on docker with nginx following :
well documented Deploy Mattermost via Docker - Mattermost documentation
no domain : in my case is a simple localhost.
to generate the keys I use:
openssl genrsa -out private-key.pem 2048
openssl req -new -x509 -key private-key.pem -out certificate.pem -days 365
mkdir -p ./volumes/web/cert
cp certificate.pem ./volumes/web/cert/cert.pem
cp private-key.pem ./volumes/web/cert/key-no-password.pem
BUT I get always
Image may be NSFW.
Clik here to view.
the bash script provided (issue-certificate.sh) not seems work with “localhost”
how to solve?
Mattermost load well at the ip server (without :port specified) 192.178.0.150
and I can read from the browser all the info provided during the creation of the certificate…
so I suppose that it works or not ?
Is it this the correct behavior ?
thank you!