On 21 Dec 2018, at 12:00, Sven Van Caekenberghe <sven@stfx.eu> wrote:
I just tried in Ubuntu 18.04.O1 LTS 64-bit, using Pharo 7 and FireFox, and it worked.
BTW, I made my certificate like this (on macOS): prometheus:tmp sven$ mkdir ssl prometheus:tmp sven$ cd ssl prometheus:ssl sven$ openssl genrsa -out privkey.pem 1024 Generating RSA private key, 1024 bit long modulus ......................................++++++ ......++++++ e is 65537 (0x10001) prometheus:ssl sven$ openssl req -new -key privkey.pem -out certreq.csr You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) []:BE State or Province Name (full name) []: Locality Name (eg, city) []:Hasselt Organization Name (eg, company) []:Beta Nine Organizational Unit Name (eg, section) []: Common Name (eg, fully qualified host name) []:Sven Van Caekenberghe Email Address []: Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []: prometheus:ssl sven$ openssl x509 -req -days 3650 -in certreq.csr -signkey privkey.pem -out newcert.pem Signature ok subject=/C=BE/L=Hasselt/O=Beta Nine/CN=Sven Van Caekenberghe Getting Private key prometheus:ssl sven$ ( openssl x509 -in newcert.pem; cat privkey.pem ) > server.pem prometheus:ssl sven$ ls certreq.csr newcert.pem privkey.pem server.pem prometheus:ssl sven$ ls -la server.pem -rw-r--r-- 1 sven staff 1681 Dec 21 11:28 server.pem prometheus:ssl sven$ pwd /Users/sven/tmp/ssl prometheus:ssl sven$ Display all 2771 possibilities? (y or n) prometheus:ssl sven$ ls certreq.csr newcert.pem privkey.pem server.pem