servers:linux:nginx:custom:status_page
Table of Contents
Information
Prerequisites
index.html
sudo mkdir -p '/srv/www/status-custom' && sudo -e '/srv/www/status-custom/index.html' && sudo chown -R 'wwwrun':'www' '/srv/www/status-custom' && sudo chmod -R '0755' '/srv/www/status-custom'
<!DOCTYPE html> <html> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>RoE | Status</title> </head> <body> This is the status page of Realm of Espionage: <br> <!--Last updated: May 1st, 2026--> <br> <a href = 'https://realmofespionage.xyz' target = 'blank'>Realm of Espionage</a> - Main page <br> Up <br><br> <a href = 'https://wiki.realmofespionage.xyz' target = 'blank'>RoE | Wiki</a> - Wiki <br> Up <br><br> <a href = 'https://media.realmofespionage.xyz' target = 'blank'>RoE | Media</a> - Pictures/Screenshots <br> Up <br><br> <a href = 'https://blog.realmofespionage.xyz' target = 'blank'>RoE | Blog</a> - Blog <br> Up <br><br> <a href = 'https://social.realmofespionage.xyz/profile/espionage724' target = 'blank'>RoE | Social</a> - Micro-blog (ActivityPub) <br> Up <br><br> <a href = 'https://forums.realmofespionage.xyz' target = 'blank'>RoE | Forums</a> - Forums <br> Up <br><br> <a href = 'https://wiki.realmofespionage.xyz/servers:linux:nginx:custom:status_page' target = 'blank'>How this webpage is configured</a> <br> <a href = 'https://www.youtube.com/watch?v=vzZn31gd_Jc' target = 'blank'>Magic</a> <br><br> Daily short downtime for maintenance <a href = 'https://wiki.realmofespionage.xyz/devices:network:netgear_r6260_openwrt#scheduled_tasks' target = 'blank'>2:45</a> and <a href = 'https://wiki.realmofespionage.xyz/linux:distros:server:opensuse_tumbleweed_server#timer' target = 'blank'>6</a> AM EST </body> </html> <!--End-->
nginx Configuration
Server Block
sudo -e '/etc/nginx/vhosts.d/status-custom.conf' && sudo systemctl reload 'nginx'
server {
listen '443' 'ssl';
http2 'on';
server_name 'status.realmofespionage.xyz';
root '/srv/www/status-custom';
index 'index.html';
include '/etc/nginx/default.d/headers.conf';
}
# End
/srv/www/wiki/data/pages/servers/linux/nginx/custom/status_page.txt · Last modified: by Sean Rhone
