Modified a bit for Program.cs
This commit is contained in:
parent
9360a6d99a
commit
38669444b4
@ -14,13 +14,15 @@ namespace Example3
|
|||||||
{
|
{
|
||||||
/* Create a new instance of the HttpServer class.
|
/* Create a new instance of the HttpServer class.
|
||||||
*
|
*
|
||||||
* If you would like to provide the secure connection, you should create the instance
|
* If you would like to provide the secure connection, you should create the instance with
|
||||||
* with the 'secure' parameter set to true.
|
* the 'secure' parameter set to true, or the https scheme HTTP URL.
|
||||||
*/
|
*/
|
||||||
var httpsv = new HttpServer (4649);
|
var httpsv = new HttpServer (4649);
|
||||||
//var httpsv = new HttpServer (5963, true);
|
//var httpsv = new HttpServer (5963, true);
|
||||||
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649);
|
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 4649);
|
||||||
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 5963, true);
|
//var httpsv = new HttpServer (System.Net.IPAddress.Parse ("127.0.0.1"), 5963, true);
|
||||||
|
//var httpsv = new HttpServer ("http://localhost:4649");
|
||||||
|
//var httpsv = new HttpServer ("https://localhost:5963");
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
// To change the logging level.
|
// To change the logging level.
|
||||||
httpsv.Log.Level = LogLevel.Trace;
|
httpsv.Log.Level = LogLevel.Trace;
|
||||||
|
Loading…
Reference in New Issue
Block a user