You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> By default all services bind to `127.0.0.1`, keeping them accessible only from the local machine.
132
+
130
133
## Service Management
131
134
132
135
```bash
@@ -163,9 +166,9 @@ sudo systemctl --failed
163
166
journalctl -u ollama --since "1 hour ago"
164
167
```
165
168
166
-
### Firewall Issues
169
+
### Firewall & Remote Access
167
170
168
-
Make sure `openFirewall = true` is set for each service, or manually add:
171
+
Binding to `127.0.0.1` means no firewall changes are required. If you explicitly need LAN access, switch the host/URIs back to `0.0.0.0` and either set `openFirewall = true` on each service or add:
169
172
170
173
```nix
171
174
{
@@ -175,6 +178,19 @@ Make sure `openFirewall = true` is set for each service, or manually add:
175
178
}
176
179
```
177
180
181
+
Only open these ports on networks you trust.
182
+
183
+
### PyAudio Build Errors
184
+
185
+
If an earlier install attempt mixed Python versions, `uv` may leave behind an incompatible environment (common error: `would build wheel with unsupported tag ('cp311', 'cp313', ...)`). Clean the cached tool and reinstall:
0 commit comments