mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-09-16 22:31:32 +00:00
Compare commits
6 Commits
bfb01be34c
...
12486a154a
Author | SHA1 | Date | |
---|---|---|---|
|
12486a154a | ||
|
45df9dc5bf | ||
|
06db95d7c0 | ||
|
590a52d38c | ||
|
ca3fad6632 | ||
|
e0d5787c5d |
@@ -153,7 +153,7 @@ For more details, check out the full documentation [here](https://github.com/Itz
|
||||
|
||||
## Expose Perplexica to network
|
||||
|
||||
You can access Perplexica over your home network by following our networking guide [here](https://github.com/ItzCrazyKns/Perplexica/blob/master/docs/installation/NETWORKING.md).
|
||||
Perplexica runs on Next.js and handles all API requests. It works right away on the same network and stays accessible even with port forwarding.
|
||||
|
||||
## One-Click Deployment
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
FROM node:20.18.0-alpine AS builder
|
||||
FROM node:20.18.0-slim AS builder
|
||||
|
||||
WORKDIR /home/perplexica
|
||||
|
||||
@@ -12,7 +12,7 @@ COPY public ./public
|
||||
RUN mkdir -p /home/perplexica/data
|
||||
RUN yarn build
|
||||
|
||||
FROM node:20.18.0-alpine
|
||||
FROM node:20.18.0-slim
|
||||
|
||||
WORKDIR /home/perplexica
|
||||
|
||||
|
@@ -26,9 +26,21 @@ services:
|
||||
- ./config.toml:/home/perplexica/config.toml
|
||||
restart: unless-stopped
|
||||
|
||||
redict:
|
||||
image: registry.redict.io/redict:latest
|
||||
container_name: perplexica-redict
|
||||
ports:
|
||||
- "6379:6379"
|
||||
volumes:
|
||||
- redict_data:/data
|
||||
networks:
|
||||
- perplexica-network
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
perplexica-network:
|
||||
|
||||
volumes:
|
||||
backend-dbstore:
|
||||
uploads:
|
||||
redict_data:
|
@@ -12,6 +12,11 @@ search:
|
||||
server:
|
||||
secret_key: 'a2fb23f1b02e6ee83875b09826990de0f6bd908b6638e8c10277d415f6ab852b' # Is overwritten by ${SEARXNG_SECRET}
|
||||
|
||||
redis:
|
||||
url: redis://redict:6379/0
|
||||
|
||||
engines:
|
||||
- name: wolframalpha
|
||||
disabled: false
|
||||
- name: qwant
|
||||
disabled: true
|
||||
|
Reference in New Issue
Block a user