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

The default certificate length is too small #38

Open
dconco opened this issue Nov 1, 2024 · 2 comments
Open

The default certificate length is too small #38

dconco opened this issue Nov 1, 2024 · 2 comments

Comments

@dconco
Copy link

dconco commented Nov 1, 2024

When trying to run npm run start-dev it complains about SSL, that the length is too small

@mdtausifiqbal
Copy link

I solved using below commands

  1. Install openssl-tool in termux
pkg install openssl-tool -y
  1. Navigate to .vscode directory
cd .vscode
  1. generate new .crt and .key file
openssl req -newkey rsa:2048 -nodes -keyout server.key -x509 -days 365 -out server.crt

after running above commands you can restart development server.

@dconco
Copy link
Author

dconco commented Nov 29, 2024

I just instead edit their code to use localhost, check the commit history

(#39)

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

No branches or pull requests

2 participants