Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How To Create working Certs with openssl for a self hosting piping-server? #452

Open
HoerMirAuf opened this issue Jul 13, 2022 · 1 comment
Labels
question Further information is requested

Comments

@HoerMirAuf
Copy link

How To Create working Certs with openssl for a self hosting piping-server?

@nwtgck nwtgck added the question Further information is requested label Jul 14, 2022
@nwtgck
Copy link
Owner

nwtgck commented Jul 14, 2022

How about this?

(mkdir /tmp/ssl_certs && cd /tmp/ssl_certs && openssl req -x509 -newkey rsa:4096 -keyout server.key -out server.crt -days 365 -sha256 -nodes --subj '/CN=localhost/')

piping-server --http-port=8080 --enable-https=true --https-port=8443 --key-path=/tmp/ssl_certs/server.key --crt-path=/tmp/ssl_certs/server.crt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants