Skip to content

Instantly share code, notes, and snippets.

View JeepNL's full-sized avatar
💭
#RIPTwitter Hello #Mastodon

Jaap JeepNL

💭
#RIPTwitter Hello #Mastodon
View GitHub Profile
@JeepNL
JeepNL / appsettings.Development.json
Created May 3, 2021 19:29
YARP appsettings.Development.json v2
{
//
// LOGGING
//
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Yarp": "Information",
"Microsoft.Hosting.Lifetime": "Information"
@JeepNL
JeepNL / appsettings.Development.json
Created May 3, 2021 10:03
YARP appsettings.Development.json
{
//
// Logging
//
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Information",
"Yarp": "Information",
"Microsoft.Hosting.Lifetime": "Information"
@JeepNL
JeepNL / StreamController.cs
Last active March 6, 2021 11:44
Stream video in chunks to client. Server controller in a Kestrel hosted Blazor WASM ASP.NET Core 6 preview 1 / C# 9 project
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
using System.Threading.Tasks;
namespace Media.Server.Controllers
{