mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-05-28 19:28:38 +02:00
Page:
FAQ Frequently Asked Questions
Pages
Add Routing Via Config File
Custom Headers
FAQ Frequently Asked Questions
Getting Started
Home
Migrate Zoraxy to another Server
Move Certificates to Zoraxy
Move to Zoraxy from Nginx Proxy Manager
Screenshots
Startupparameters for Zoraxy
Troubleshooting Workarounds
Updating Zoraxy
Zoraxy in Docker with Portainer and Nginx as examples
Clone
13
FAQ Frequently Asked Questions
Tealk edited this page 2025-03-25 20:53:12 +01:00
Table of Contents
On this Page you find answers to often asked questions. If you do not find the information you need, or you have a specific question, then feel free to open a discussion. You found a bug? Then please write an issue with detailed informations!
Is there a docker image available?
Yes a docker image is provided by passivelemmon, you can find more information in the docker readme!
Here is an example docker-compose.yml:
services:
zoraxy:
image: zoraxydocker/zoraxy:latest
container_name: zoraxy
restart: unless-stopped
ports:
- 80:80
- 443:443
- 8005:8000/tcp
volumes:
- ./config:/opt/zoraxy/config/
- /var/run/docker.sock:/var/run/docker.sock
environment:
PORT: "8000"
FASTGEOIP: "true"
Create a systemd-service for Zoraxy
If you want faster GeoIP-Lookup, you can add -fastgeoip=true
after -port=:8000
. Zoraxy will then use more RAM.
See v2.6.6 Release
Create systemd-service file with
sudo nano /etc/systemd/system/zoraxy.service
Put in following lines:
[Unit]
Description=Zoraxy Service
After=network.target
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/opt/zoraxy/src
ExecStart=/opt/zoraxy/src/zoraxy -port=:8000
Restart=always
[Install]
WantedBy=multi-user.target
Start automaticly Zoraxy with:
sudo systemctl enable --now zoraxy
Now status messages can be showed with:
sudo systemctl status zoraxy