mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 07:28:06 -05:00
9 lines
188 B
Bash
Executable File
9 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
openssl req -new -x509 -nodes \
|
|
-out cert.pem \
|
|
-keyout key.pem \
|
|
-newkey ec \
|
|
-pkeyopt ec_paramgen_curve:prime256v1 \
|
|
-subj '/CN=127.0.0.1' \
|
|
-days 14
|