How to protect “master” in github?

Back then, when this question was posted, GitHub didn’t allow you to specify access privileges on a branch level. You can only do it on a repository level. So what you are requesting wasn’t possible. If you want to work around this limitation, I personally see two options: you could use some kind of commit … Read more

Self hosted OWIN and urlacl

so it turns out you need to pass in a url into StartOptions in the same format as the urlacl. Changing the start options to the code below fixed the problem. now the app is accessible across the network. var options = new StartOptions(“http://*:8989”) { ServerFactory = “Microsoft.Owin.Host.HttpListener” };