生成 Chrome 可信任的自签名证书
生成的证书需要安装在本机信任机构列表中。 # 生成CA # openssl rand -writerand ~/.rnd openssl genrsa -out ca.key 4096 openssl req -new -x509 -days 365 -key ca.key -subj "/C=CN/ST=GD/L=GZ/O=Test/CN=root" -out ca.crt # 生成CSR文件 openssl req -newkey rsa:4096 -nodes -keyout server.key -subj "/C=CN/ST=GD/L=GZ/O=Test/CN=*.example.com" -out server.csr # 根据C ...