80 lines
3.0 KiB
C#
80 lines
3.0 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Server.Kestrel;
|
|
using Microsoft.AspNetCore.Server.Kestrel.Filter;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.PlatformAbstractions;
|
|
|
|
namespace SampleApp
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory, IApplicationEnvironment env)
|
|
{
|
|
var ksi = app.ServerFeatures.Get<IKestrelServerInformation>();
|
|
//ksi.ThreadCount = 4;
|
|
ksi.NoDelay = true;
|
|
|
|
loggerFactory.AddConsole(LogLevel.Trace);
|
|
|
|
var testCertPath = Path.Combine(
|
|
env.ApplicationBasePath,
|
|
@"../../test/Microsoft.AspNetCore.Server.KestrelTests/TestResources/testCert.pfx");
|
|
|
|
if (File.Exists(testCertPath))
|
|
{
|
|
app.UseKestrelHttps(new X509Certificate2(testCertPath, "testPassword"));
|
|
}
|
|
else
|
|
{
|
|
Console.WriteLine("Could not find certificate at '{0}'. HTTPS is not enabled.", testCertPath);
|
|
}
|
|
|
|
app.UseKestrelConnectionLogging();
|
|
|
|
app.Run(async context =>
|
|
{
|
|
Console.WriteLine("{0} {1}{2}{3}",
|
|
context.Request.Method,
|
|
context.Request.PathBase,
|
|
context.Request.Path,
|
|
context.Request.QueryString);
|
|
Console.WriteLine($"Method: {context.Request.Method}");
|
|
Console.WriteLine($"PathBase: {context.Request.PathBase}");
|
|
Console.WriteLine($"Path: {context.Request.Path}");
|
|
Console.WriteLine($"QueryString: {context.Request.QueryString}");
|
|
|
|
var connectionFeature = context.Connection;
|
|
Console.WriteLine($"Peer: {connectionFeature.RemoteIpAddress?.ToString()} {connectionFeature.RemotePort}");
|
|
Console.WriteLine($"Sock: {connectionFeature.LocalIpAddress?.ToString()} {connectionFeature.LocalPort}");
|
|
|
|
context.Response.ContentLength = 11;
|
|
context.Response.ContentType = "text/plain";
|
|
await context.Response.WriteAsync("Hello world");
|
|
});
|
|
}
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
var host = new WebHostBuilder()
|
|
.UseDefaultConfiguration(args)
|
|
.UseApplicationBasePath(Directory.GetCurrentDirectory())
|
|
.UseStartup<Startup>()
|
|
.Build();
|
|
|
|
// The following section should be used to demo sockets
|
|
//var addresses = application.GetAddresses();
|
|
//addresses.Clear();
|
|
//addresses.Add("http://unix:/tmp/kestrel-test.sock");
|
|
|
|
host.Run();
|
|
}
|
|
}
|
|
} |