This is an old revision of the document!
Table of Contents
Ingress
Purpose
ingress.hackeriet.no is the nginx-based web front for Hackeriet services. It terminates public web traffic and reverse-proxies service hostnames to their upstream applications.
Known service hostnames in the nginx configuration include:
ip.hackeriet.no- NetBoxhula.hackeriet.noevents.hackeriet.nonms.hackeriet.no- LibreNMSdocs.hackeriet.noping.hackeriet.nopad.hackeriet.noandpad2.hackeriet.no
Service-specific deployment details belong on the relevant service pages. This page is an emergency runbook and access guide, not inventory. Use NetBox for canonical VM details, IP assignments, tenant, and hosting information.
Access
Normal access:
ssh <your-hacker-id-username>@ingress.hackeriet.no
Access is managed through Hacker-ID / Kanidm. The relevant group is documented on Hacker-ID:
service-webingress-sysops- SSH + sudo + docker foringress
Nginx configuration
Main observed configuration file:
/etc/nginx/conf.d/hackeriet.no.conf
The file contains an operator note for adding new proxied services:
- Add the upstream hostname to
/etc/hostsif needed. - Copy an existing nginx
serverblock. - Replace
$SERVICEwith the configured DNS hostname. - Run
certbot -d $SERVICE.hackeriet.no –nginx. - Configure the downstream host.
Example upstream pattern observed in the config:
proxy_pass https://app-01.hackeriet.no; proxy_set_header Host $host; proxy_set_header Referer $http_referer; proxy_ssl_trusted_certificate /root/cert/app-01.crt; proxy_ssl_verify on;
Network
Observed DNS on 2026-05-25:
ingress.hackeriet.noA:185.35.202.240ingress.hackeriet.noAAAA:2a02:ed06::240
Observed host addresses on 2026-05-25:
ens18:185.35.202.240/32,2a02:ed06::240/64ens19:10.10.50.50/24
Treat these as emergency orientation only. NetBox should remain the source of truth for address assignments.
Operating system
Observed over SSH on 2026-05-25:
- OS:
Rocky Linux 9.5 (Blue Onyx) - Kernel:
5.14.0-503.35.1.el9_5.x86_64
Key services
Observed running services on 2026-05-25:
nginx- HTTP reverse proxyfirewalld- host firewallkanidm-unixdandkanidm-unixd-tasks- Hacker-ID Unix integrationsshd- SSH accesschronyd- time syncrsyslog- system loggingqemu-guest-agent- guest integration
No failed systemd units were observed at that time.
Credentials
Do not paste secrets into the wiki.
Relevant hackeriet/pass entries:
root@ingress.hackeriet.no.gpg
If root or service credentials are needed, look in hackeriet/pass and keep decrypted values out of the wiki.
Checks during incidents
Basic host checks:
hostname -f id systemctl --failed --no-pager df -h -x tmpfs -x devtmpfs ip -br addr show scope global
Service checks:
systemctl status nginx firewalld kanidm-unixd sshd nginx -t grep -n "server_name" /etc/nginx/conf.d/hackeriet.no.conf journalctl -u nginx --since "1 hour ago" journalctl -u sshd --since "1 hour ago"
DNS checks from another machine:
dig +short ingress.hackeriet.no A dig +short ingress.hackeriet.no AAAA dig +short ip.hackeriet.no A dig +short nms.hackeriet.no A
If SSH is unavailable, verify the console or recovery path in NetBox or another active source of truth.