Search found 17 matches

by proxmoxer
Thu May 14, 2026 10:25 pm
Forum: EverPanel
Topic: Everpanel xahau ws seem to work better with local ip instead of npmplus
Replies: 0
Views: 43

Everpanel xahau ws seem to work better with local ip instead of npmplus

When communicating from your evernode vms with your xahau vm it seems like things work better if you use your local ip instead of your domain that is routed through npmplus!

Basically
evernode config xahaud ws://xahaulocalip
by proxmoxer
Wed May 13, 2026 2:38 am
Forum: EverPanel
Topic: Use NPMPlus to manage evernode SSL Certs
Replies: 2
Views: 232

Re: Use NPMPlus to manage evernode SSL Certs

After playing with this for a few days. I DO NOT recommend! The custom certs also need to be injected into the tenant instances, so there's quite a lot of extra work after solving this first piece :) http://gadget78.uk/user-install.sh The everpanel user-install script shows how you can inject ssl c...
by proxmoxer
Sat Feb 21, 2026 7:19 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 4
Views: 24802

Re: How to install proxmox + xahau server + your first evernode VM

Don't forget to do this after installing proxmox: 1. Write touch /etc/default/pveproxy 2. write nano /etc/default/pveproxy 3. add this row: LISTEN_IP=0.0.0.0 4. Hit CTRL + X and then pick Y to save the file. 5. Restart the service systemctl restart pveproxy.service spiceproxy.service Proxmox should ...
by proxmoxer
Sat Feb 14, 2026 11:33 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 4
Views: 24802

Re: How to install proxmox + xahau server + your first evernode VM

Sometimes you need to adjust your xahau allow list (for example if you want to let other people use it, or if you change your ip, or something else), do it with these commands:
sudo nano /root/xahl-node/nginx_allowlist.conf
sudo nginx -s reload
by proxmoxer
Sat Feb 14, 2026 7:38 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 4
Views: 24802

Re: How to install proxmox + xahau server + your first evernode VM

Sometimes you need to send all traffic to the nginx (instead of sending it separately to each respective vm). To do that you need to create two new files in nginx. You Might need to install full nginx with sudo apt install -y nginx-full (feel free to comment if its necessary) There are a few things ...
by proxmoxer
Sat Feb 14, 2026 7:25 pm
Forum: EverPanel
Topic: Portrange for Everpanel
Replies: 0
Views: 3314

Portrange for Everpanel

following ports (UDP/TCP)
53
80
443

Following portrange UDP/TCP
30111-32575
by proxmoxer
Mon Feb 09, 2026 1:22 am
Forum: Hosting An Evernode
Topic: evernode troubleshoot script
Replies: 0
Views: 1757

evernode troubleshoot script

https://github.com/Joshwaamein/evernode-node-doctor/tree/main
by proxmoxer
Mon Jan 26, 2026 10:29 pm
Forum: Hosting An Evernode
Topic: Add Swap when swap is missing
Replies: 0
Views: 2946

Add Swap when swap is missing

sudo fallocate -l 6G /swapfile

sudo chmod 600 /swapfile

sudo mkswap /swapfile

sudo swapon /swapfile

sudo nano /etc/fstab

add following:

Code: Select all

/swapfile none swap defaults 0 0
sudo reboot (just to make sure it all works)
by proxmoxer
Tue Jan 20, 2026 1:45 am
Forum: EverPanel
Topic: DNS System Down
Replies: 0
Views: 2235

DNS System Down

If your DNS system is down, then there are numerous of potential reasons. Start off by logging into NPMPlus panel and search for the dnsapi route. Since the DNS api is installed on the NPMPlus server, coincidentally, it should have the same local ip as the npmplus server use. If the ip doesn't match...
by proxmoxer
Sun Jan 18, 2026 7:19 pm
Forum: Hosting An Evernode
Topic: Error: Stage Configuring fstab mount: /: mount point not mounted or bad option
Replies: 0
Views: 4200

Error: Stage Configuring fstab mount: /: mount point not mounted or bad option

Warning: This post is hastily written, so take it with a grain of salt. You might end up sitting in a recovery console after doing what I describe here, but it has been tested once and worked well. When you get this error: Error: Stage Configuring fstab mount: /: mount point not mounted or bad opti...