Search found 24 matches

by proxmoxer
Fri Jul 31, 2026 12:00 am
Forum: EverPanel
Topic: Allow seperate SSL certificate requests through port 80 on NPMPLUS
Replies: 1
Views: 4122

Re: Allow seperate SSL certificate requests through port 80 on NPMPLUS

The above one doesn't seem to work too well anymore, but this work


rewrite ^(/\.well-known/acme-challenge/.*)$ /internal$1 last;

location ~ ^/internal(/\.well-known/acme-challenge/.*)$ {
proxy_set_header Host $host;
proxy_pass http://192.168.1.201:80$1;
}

You just need to add ur ip properly
by proxmoxer
Thu Jul 30, 2026 6:35 pm
Forum: Hosting An Evernode
Topic: How to enable xterm console on proxmox so that you can copy paste into shell
Replies: 1
Views: 1228

Re: How to enable xterm console on proxmox so that you can copy paste into shell

quickie
sed -i.bak -E 's|^[[:space:]]*GRUB_CMDLINE_LINUX_DEFAULT=.*$|GRUB_CMDLINE_LINUX_DEFAULT="quiet splash console=tty0 console=ttyS0,115200n8"|' /etc/default/grub \
&& update-grub


verify
grep '^GRUB_CMDLINE_LINUX_DEFAULT=' /etc/default/grub
by proxmoxer
Fri Jul 17, 2026 5:40 pm
Forum: Hosting An Evernode
Topic: Remote access to proxmox
Replies: 0
Views: 859

Remote access to proxmox

When you open proxmox port for public you also open up a vulnerability, there exist millions of webcrawlers searching for open ports (8006 being one of them).

First strategy to protect yourself is to install fail2ban, it will then block bruteforce attempts after X amount of tries.

1. (tutorial ...
by proxmoxer
Sun Jul 12, 2026 7:14 pm
Forum: Hosting An Evernode
Topic: Perc H730 Mini RAID Controller smarttest
Replies: 1
Views: 757

Re: Perc H730 Mini RAID Controller smarttest

Check if drive is failing with
/opt/MegaRAID/perccli/perccli64 /c0/eall/sall show all | grep -E "Predictive|Failed"
by proxmoxer
Sun Jul 12, 2026 7:06 pm
Forum: Hosting An Evernode
Topic: Perc H730 Mini RAID Controller smarttest
Replies: 1
Views: 757

Perc H730 Mini RAID Controller smarttest

a good copypaste, I have tried this and it seems to work well, of course the raid control software changes over time, and over machines. This is for Perc H730 Mini Raid

# Checking a Dell PERC H730 Mini RAID Controller on Proxmox VE

## System covered

This guide is specifically for:

* Proxmox VE ...
by proxmoxer
Sun Jul 12, 2026 10:16 am
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 26193

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

Sometimes you might not be able to reach your public ip from within your vm, one way to solve that issue is to add a firewall rule that routes your public ip to your local vm ip.

sudo nano /etc/ufw/before.rules

# Redirect connections to the public IP toward the LAN IP
*nat
:OUTPUT ACCEPT [0:0]
-A ...
by proxmoxer
Tue Jun 09, 2026 3:24 am
Forum: Hosting An Evernode
Topic: How to enable xterm console on proxmox so that you can copy paste into shell
Replies: 1
Views: 1228

How to enable xterm console on proxmox so that you can copy paste into shell

This requires modification in your grub file, the grub file is what linux reads when it boots up. If you screw it up, linux won't boot. In that scenario you need to boot into the recovery mode and correct the errors.

Step 1.
Add a serial port when your VM is running (click your VM, click Hardware ...
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: 1414

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: 838

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 ...
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: 6
Views: 26193

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 ...