mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-10 07:28:06 -05:00
11 lines
297 B
Bash
Executable File
11 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
HASH=`openssl x509 -pubkey -noout -in cert.pem |
|
|
openssl pkey -pubin -outform der |
|
|
openssl dgst -sha256 -binary |
|
|
base64`
|
|
|
|
/opt/google/chrome/chrome \
|
|
--origin-to-force-quic-on=127.0.0.1:3000 \
|
|
--ignore-certificate-errors-spki-list=$HASH \
|
|
https://localhost:3000
|