Anúncio

ASP.NET Core deployment options

Writer | .NET Developer | Microsoft MVP | Public Speaker | Microsoft Azure Nerd
22 de Nov de 2016
Anúncio

Mais conteúdo relacionado

Apresentações para você(20)

Similar a ASP.NET Core deployment options(20)

Anúncio
Anúncio

ASP.NET Core deployment options

  1. Ken Cenerelli
  2. ABOUT ME Twitter: @KenCenerelli Email: Ken_Cenerelli@Outlook.com Blog: kencenerelli.wordpress.com LinkedIn: linkedin.com/in/kencenerelli  Content Developer / Programmer Writer  Microsoft MVP - Visual Studio and Development Technologies  Microsoft TechNet Wiki Guru  Co-Organizer of CTTDNUG  Technical reviewer of multiple books CTTDNU G Ken Cenerelli 2
  3. (previously ASP.NET 5)
  4. .NET Framework .NET Core Platform for .NET applications on Windows Cross-platform, modular libraries & runtime optimized for server and cloud workloads
  5. Development Production
  6. dot.net https://github.com/dotnet/cli https://github.com/aspnet/cli-samples
  7. deploy script
  8. https://hub.docker.com/r/microsoft/aspnetcore https://www.docker.com/products/docker https://aka.ms/dockertoolsforvs https://aka.ms/azurecontainerservice
  9. Public Cloud Other CloudsOn Premises Private cloud Azure Service Fabric ASP.NET Core
  10. https://github.com/aspnet/home http://docs.asp.net https://github.com/aspnet
  11. Credit: https://www.flickr.com/photos/slightlyblurred/9235803926/
  12. QUESTIONS? @KenCenerelli

Notas do Editor

  1. One package is Microsoft.AspNetCore.Server.Kestrel Server in name as this version of .NET has its own web server name Kestrel Kestrel is an xplat web server
  2. Might think you can self-host without IIS but MS wants you to use Kestrel behind some hardened proxy server HTTP requests arrive at your proxy and the proxy will deliver those requests to your app using Kestrel Can have multiple apps behind a proxy and use host headers to deliver messages Think of IIS as a proxy and process manager IIS recycle processes still available but real work of HTTP requests done in Kestrel
Anúncio