servers:bsd:nginx:custom:status_page
This is an old revision of the document!
Table of Contents
Information
Prerequisites
index.html
su -
mkdir -p '/usr/local/www/status-custom' && chown -R 'www':'www' '/usr/local/www/status-custom'
su -m 'www' -c "ee '/usr/local/www/status-custom/index.html'"
<!DOCTYPE html> <html> <meta name="viewport" content="width=device-width, initial-scale=1" /> <head> <title>RoE | Status</title> </head> <body> This is the status page of Realm of Espionage: <br> <!--Last updated: March 5th, 2026--> Last updated: March 5th, 2026 <br> <a href = 'https://realmofespionage.xyz/' target = 'blank'>Realm of Espionage</a> - Main page <br> Down <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> Down <br><br> <a href = 'https://blog.realmofespionage.xyz/' target = 'blank'>RoE | Blog</a> - Blog <br> Down <br><br> <a href = 'https://social.realmofespionage.xyz/profile/espionage724' target = 'blank'>RoE | Social</a> - Micro-blog (ActivityPub) <br> Down <br><br> <a href = 'https://forums.realmofespionage.xyz/' target = 'blank'>RoE | Forums</a> - Forums <br> Down <br><br> <a href = 'https://wiki.realmofespionage.xyz/servers;windows;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/bsd:server:freebsd_16.0#updater1' target = 'blank'>6</a> AM EST <br> </body> </html> <!--End-->
nginx Configuration
Server Block
su -
ee '/usr/local/etc/freenginx/vhosts.d/status-custom.conf' && service 'nginx' reload
server {
listen '443' 'ssl';
http2 'on';
server_name 'status.realmofespionage.xyz';
root '/usr/local/www/status-custom';
index 'index.html';
include '/usr/local/etc/freenginx/default.d/headers.conf';
}
# End
/usr/local/www/wiki/data/attic/servers/bsd/nginx/custom/status_page.1772752526.txt.gz · Last modified: by Sean Rhone
