====== 2.3 Server-Einstellungen ====== HTTP-Server und Netzwerkkonfiguration. ===== Port ändern ===== "Kestrel": { "Endpoints": { "Http": { "Url": "http://*:8080" } } } ===== HTTPS aktivieren ===== "Kestrel": { "Endpoints": { "Https": { "Url": "https://*:443", "Certificate": { "Path": "cert.pfx", "Password": "geheim" } } } } ===== Nur localhost ===== "Url": "http://localhost:5000" ===== Alle Interfaces ===== "Url": "http://*:5000" ===== Umgebungsvariable ===== set ASPNETCORE_URLS=http://*:8080