You've already forked solo-webupdate
mirror of
https://github.com/solokeys/solo-webupdate.git
synced 2026-03-11 17:14:29 -07:00
6 lines
201 B
Bash
Executable File
6 lines
201 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes -keyout localhost.key -out localhost.crt \
|
|
-subj /CN=localhost \
|
|
-addext subjectAltName=DNS:localhost,IP:127.0.0.1
|