mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-06-20 08:48:35 +00:00
1.3 KiB
1.3 KiB
Accessing Perplexica over a Network
This guide explains how to access Perplexica over your network using the nginx reverse proxy included in the Docker setup.
Basic Network Access
Perplexica is automatically accessible from any device on your network:
-
Start Perplexica using Docker Compose:
docker compose up -d
-
Find your server's IP address:
- Windows:
ipconfig
in Command Prompt - macOS:
ifconfig | grep "inet "
in Terminal - Linux:
ip addr show | grep "inet "
in Terminal
- Windows:
-
Access Perplexica from any device on your network:
http://YOUR_SERVER_IP:8080
Custom Port Configuration
If you need to use a different port instead of the default 8080:
-
Modify the
docker-compose.yaml
file:perplexica: ports: - "YOUR_CUSTOM_PORT:8080"
-
Restart the containers:
docker compose down && docker compose up -d
Troubleshooting
If you encounter issues accessing Perplexica over your network:
- Firewall Settings: Ensure port 8080 (or your custom port) is allowed in your firewall
- Docker Logs: Check for any connection issues with
docker logs perplexica
- Network Access: Make sure your devices are on the same network and can reach the server