c# - How to Configure owin/Katana to listen on all host ip addresses -


How to configure an OWin Web server to be accessible from other hosts All examples for local instances are configured Do not know what the URL is (IP address / hostname)

code:

  class program {static string url = "http: / / / Localhost: 9080 "; Fixed Zero main (string [] args) {(WebApp.start>  (url)) {Console.WriteLine ("server is running {0}", url); Console.ReadLine (); }}}}  
= "post-text" itemprop = "text">

You have your URL '*':

  static string url = "http : // *: 9080 ";   

This will be less restrictive than the local host.

Comments

Popular posts from this blog

Out of index C/C++ -

regex - PatternSyntaxException: while using String.ReplaceAll function in java? -

objective c - how Set autolayout for multiple dynamic buttons and labells in iOS? -