This commit is contained in:
2026-05-19 23:24:51 +02:00
parent 265a2b3d2a
commit a3e5b42733
10 changed files with 62 additions and 8 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
logrotate state -- version 2
"/var/log/acpid.log" 2026-1-19-2:0:0
"/config/log/nginx/access.log" 2026-3-30-2:0:0
"/config/log/nginx/access.log" 2026-5-17-2:0:0
"/var/log/php84/*.log" 2026-1-19-2:0:0
"/config/log/nginx/error.log" 2026-1-19-2:0:0
"/config/log/php/error.log" 2026-3-30-2:0:0
"/config/log/php/error.log" 2026-5-17-2:0:0
+1 -1
View File
@@ -166,5 +166,5 @@
href: https://www.myabandonware.com/
- itch.io:
- abbr: IT
icon: images/itchio.svg
icon: /images/itchio.svg
href: https://itch.io/
+18
View File
@@ -44,3 +44,21 @@
enablePools: true # optional, defaults to false
nasType: scale # defaults to scale, must be set to 'core' if using enablePools with TrueNAS Core
fields: ["load", "uptime", "alerts"]
- Home Assistant:
icon: home-assistant.svg
href: "https://ha.home.ramberg.net"
#description: Home Assistant
widget:
type: homeassistant
url: "https://ha.home.ramberg.net"
key: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiOTQ4NmViZGQwMWQ0OTNmOTBlMDc1NjU3ZWI2MjNkNyIsImlhdCI6MTc3ODI4MDUwMCwiZXhwIjoyMDkzNjQwNTAwfQ.McjQSZ2NBDnAPzciwql5mG6JghPwLgWzQGGAKLAyKrI
# custom:
# - state: sensor.total_power
# - state: sensor.total_energy_today
# label: energy today
# - template: "{{ states.switch|selectattr('state','equalto','on')|list|length }}"
# label: switches on
# - state: weather.forecast_home
# label: wind speed
# value: "{attributes.wind_speed} {attributes.wind_speed_unit}"
@@ -1,4 +1,4 @@
version = 5.2.2
version = 5.3.1
archive_dir = /etc/letsencrypt/archive/npm-14
cert = /etc/letsencrypt/live/npm-14/cert.pem
privkey = /etc/letsencrypt/live/npm-14/privkey.pem
@@ -1,4 +1,4 @@
version = 5.2.2
version = 5.3.1
archive_dir = /etc/letsencrypt/archive/npm-15
cert = /etc/letsencrypt/live/npm-15/cert.pem
privkey = /etc/letsencrypt/live/npm-15/privkey.pem
@@ -1,4 +1,4 @@
version = 5.2.2
version = 5.3.1
archive_dir = /etc/letsencrypt/archive/npm-16
cert = /etc/letsencrypt/live/npm-16/cert.pem
privkey = /etc/letsencrypt/live/npm-16/privkey.pem
@@ -1,4 +1,4 @@
version = 5.2.2
version = 5.3.1
archive_dir = /etc/letsencrypt/archive/npm-17
cert = /etc/letsencrypt/live/npm-17/cert.pem
privkey = /etc/letsencrypt/live/npm-17/privkey.pem
+6
View File
@@ -0,0 +1,6 @@
# qdevice environment variables
NEW_ROOT_PASSWORD=homekbr1998
MY FQDN=qdevice.home.ramberg.net
MY_IP_ADDRESS=192.168.50.207
MY_ETHERNET_DEVICE=eth0
+30
View File
@@ -0,0 +1,30 @@
services:
qnetd:
container_name: proxmox-qdevice
image: bcleonard/proxmox-qdevice:v2.0
build: .
ports:
- "22:22"
- "5403:5403"
environment:
- VAR=example
volumes:
- /run/sshd
- /home/rcadmin/docker/qdevice/corosync:/etc/corosync
restart: unless-stopped
hostname: <MY FQDN>
networks:
vlan:
ipv4_address: <MY IP ADDRESS>
networks:
vlan:
driver: macvlan
driver_opts:
parent: <MY ETHERNET DEVICE>
ipam:
driver: default
config:
- subnet: "<MY SUBNET/MY RANGE"
ip_range: "<MY IP ADDRESS (same as above)>/32"
gateway: "<MY GATEWAY>"
+1 -1
View File
@@ -12,7 +12,7 @@ if [ ! -f ".env" ]; then
fi
if [ -f ".env" ]; then
env $(grep -v '^#' ${PWD}/.env | sed 's/#.*//' | xargs) docker stack deploy -c compose.yml ${PWD##*/}
env $(grep -v '^#' ${PWD}/.env | sed 's/#.*//' | xargs -0) docker stack deploy -c compose.yml ${PWD##*/}
else
docker stack deploy -c compose.yml ${PWD##*/}
fi