8 lines
269 B
Bash
Executable File
8 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -f /tmp/key.pem ]; then
|
|
echo Creating key
|
|
openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout /tmp/key.pem -out /tmp/cert.pem -batch
|
|
fi
|
|
|
|
npx http-server --cors -S -P https://github.com --log-ip -c-1 -C /tmp/cert.pem -K /tmp/key.pem
|