Replies: 1 comment
-
Can you paste the command and the output you are executing? Similar to the one I used below ![]() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I’m currently setting up Logdy and ran into an issue when trying to bind the web UI to a specific IP address using the ui-ip configuration in the config.json file. Despite having configured it, I’m unable to access the web interface.
Here’s what I’ve done so far:
I’ve set the ui-ip parameter in config.json to my local network IP, for example:
json
Kopieren
Bearbeiten
"ui-ip": "192.168.1.100"
The other settings in the server section are as follows:
json
Kopieren
Bearbeiten
"server": {
"host": "localhost",
"port": 8080,
"bind": "0.0.0.0",
"ui-ip": "192.168.1.100",
"https": false
}
Issue:
After making these changes, I’m unable to access the Logdy web interface from the browser at http://192.168.1.100:8080 or even http://localhost:8080 (from the server itself).
The web UI works fine when I remove or comment out the ui-ip setting, allowing access via localhost.
What I’ve tried:
Restarting the Logdy server after each configuration change.
Verifying that the server is listening on the correct IP by running netstat/lsof commands.
Ensuring no firewall rules block access to port 8080.
Beta Was this translation helpful? Give feedback.
All reactions