Browse Source

Fix MQTTnet.Server app settings to allow external connections.

release/3.x.x
Christian Kratky 5 years ago
parent
commit
6f8272210c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Source/MQTTnet.Server/appsettings.json

+ 2
- 2
Source/MQTTnet.Server/appsettings.json View File

@@ -2,10 +2,10 @@
"Kestrel": { "Kestrel": {
"EndPoints": { "EndPoints": {
"Http": { "Http": {
"Url": "http://localhost:80"
"Url": "http://*:80"
}, },
"Https": { "Https": {
"Url": "http://localhost:443"
"Url": "http://*:443"
} }
} }
}, },


Loading…
Cancel
Save