Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
great explanation!One question I had was, how do you run method 1 kestrel on windows with port 443 or 80, I kept trying and getting exceptions about the socket not being allowed. Ideally I want to run kestrel on https port 443.
tried these settings in appsettings.json?"Kestrel": { "Endpoints": { "Http": { "Url": "localhost:80" }, "Https": { "Url": "localhost:443" } } }
great explanation!
One question I had was, how do you run method 1 kestrel on windows with port 443 or 80, I kept trying and getting exceptions about the socket not being allowed. Ideally I want to run kestrel on https port 443.
tried these settings in appsettings.json?
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "localhost:80"
},
"Https": {
"Url": "localhost:443"
}
}
}