HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/Perplexica/docs/installation/NETWORKING.md
# Expose Perplexica to a network

This guide will show you how to make Perplexica available over a network. Follow these steps to allow computers on the same network to interact with Perplexica. Choose the instructions that match the operating system you are using.

## Windows

1. Open PowerShell as Administrator

2. Navigate to the directory containing the `docker-compose.yaml` file

3. Stop and remove the existing Perplexica containers and images:

```
docker compose down --rmi all
```

4. Open the `docker-compose.yaml` file in a text editor like Notepad++

5. Replace `127.0.0.1` with the IP address of the server Perplexica is running on in these two lines:

```
args:
  - NEXT_PUBLIC_API_URL=http://127.0.0.1:3001/api
  - NEXT_PUBLIC_WS_URL=ws://127.0.0.1:3001
```

6. Save and close the `docker-compose.yaml` file

7. Rebuild and restart the Perplexica container:

```
docker compose up -d --build
```

## macOS

1. Open the Terminal application

2. Navigate to the directory with the `docker-compose.yaml` file:

```
cd /path/to/docker-compose.yaml
```

3. Stop and remove existing containers and images:

```
docker compose down --rmi all
```

4. Open `docker-compose.yaml` in a text editor like Sublime Text:

```
nano docker-compose.yaml
```

5. Replace `127.0.0.1` with the server IP in these lines:

```
args:
  - NEXT_PUBLIC_API_URL=http://127.0.0.1:3001/api
  - NEXT_PUBLIC_WS_URL=ws://127.0.0.1:3001
```

6. Save and exit the editor

7. Rebuild and restart Perplexica:

```
docker compose up -d --build
```

## Linux

1. Open the terminal

2. Navigate to the `docker-compose.yaml` directory:

```
cd /path/to/docker-compose.yaml
```

3. Stop and remove containers and images:

```
docker compose down --rmi all
```

4. Edit `docker-compose.yaml`:

```
nano docker-compose.yaml
```

5. Replace `127.0.0.1` with the server IP:

```
args:
  - NEXT_PUBLIC_API_URL=http://127.0.0.1:3001/api
  - NEXT_PUBLIC_WS_URL=ws://127.0.0.1:3001
```

6. Save and exit the editor

7. Rebuild and restart Perplexica:

```
docker compose up -d --build
```