Chris Jensen

Results 2 issues of Chris Jensen

Example 1 works as expected. Example 2 fails because "audio-oscillator/pull" doesn't exist. I presume it once did but doesn't anymore. Example 3 fails with the messages "TypeError: generate is not...

I have the following code running an older version of what was then called LetsEncrypt: ```csharp private static void ConfigureWebHostForHttpAndHttps(IWebHostBuilder webHostBuilder, StandardConfiguration standardConfiguration) { webHostBuilder.UseUrls($"http://0.0.0.0:{standardConfiguration.Http.HttpPort}", $"https://0.0.0.0:{standardConfiguration.Http.HttpsPort}"); webHostBuilder.UseKestrel(kestrelOptions => kestrelOptions.ConfigureHttpsDefaults(httpsOptions =>...