mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
8 lines
160 B
Bash
8 lines
160 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
openssl req -x509 -newkey rsa:4096 \
|
||
|
-keyout server-key.pem \
|
||
|
-out server-cert.pem \
|
||
|
-days 365 -nodes -batch \
|
||
|
-subj /CN=localhost
|