Jason Sims
Jason Sims
+1 I would like to see this merged since our dev servers all use self-signed certs
_bump_ This looks like a quick addition and includes tests. I'd utilize the fork for the time being but it's a nested dependency of [passport-oauth2](https://github.com/jaredhanson/passport-oauth2). cc: @ciaranj
Most libraries I've dealt with allow for this for dev purposes. I want to avoid creating certs signed by a legit CA for all dev environments. Your suggestion could also...
I accidentally deleted my previous comment so I'm hoping you received it in email. If you did can you paste it back in this thread to preserve the history? However,...
Alright, if I could get that to work it would be a suitable solution. It's not working for me right now though and I'm still getting the leaf signature error....
I'm still having issues with the suggestion. I created my own self-signed rootCA cert using ``` sh openssl genrsa -out rootCA.key 2048 openssl req -x509 -new -nodes -key rootCA.key -days...
I had a similar issue and needed to tell Nitro to prerender the root after installing `@nuxt/content` for some reason. ```js // nuxt.config.ts nitro: { prerender: { routes: ['/'] }...