From 7236f47eb72990faa9715895e89f43f55641fe18 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Thu, 17 Apr 2025 13:30:53 -0700 Subject: [PATCH] Update README.md --- logs/README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/logs/README.md b/logs/README.md index 3c20ad3..5049b31 100644 --- a/logs/README.md +++ b/logs/README.md @@ -24,4 +24,18 @@ log_backup_count = 32 ## Web Reporting WebServer There is a web-server module. You can run `python3 modules/web.py` from the project root directory and it will serve up the web content. -find it at. http://localhost:8420 \ No newline at end of file +find it at. http://localhost:8420 + +If you have linux-native running and errors such as.. +```bash + File "/usr/lib/python3.11/http/server.py", line 136, in server_bind + socketserver.TCPServer.server_bind(self) + File "/usr/lib/python3.11/socketserver.py", line 472, in server_bind + self.socket.bind(self.server_address) +``` +modify the modules/web.py to use a real IP address, meshtasticD-native is binding to 127.0.0.1 + +```python +# Set the desired IP address +server_ip = '127.0.0.1' +```