hargata/lubelog

IP Binding

Closed this issue · 4 comments

Hi,
Is there a option for setting the IP somewhere?
So I can set 10.10.10.11 instead of localhost

I'm assuming this is for the Windows standalone, if so, read this:
https://docs.lubelogger.com/Troubleshooting#cant-access-lubelogger-instance-from-other-devices

If you're running the Docker container then you can just bind an IP address like any other Docker containers.

Hello!

I'm wondering the same thing. I can't access it outside of localhost. I followed the above mentioned troubleshooting guide but I can't seem to get the syntax correct. At which line are we supposed to add the "Kestrel" section?

This is the section of code I believe I need to add to the appsettings.json:

"Kestrel": {
   "Endpoints": {
     "Http": {
       "Url": "http://10.0.0.4:5000"
     },
     "Https": {
       "Url": "https://10.0.0.4:5011"
     },
}

Here is my current appsettings.json:
image

Thanks!!

after the comma from Logging

image

That worked! Thanks so much!!