====== Information ====== * Status page * [[information:realm_of_espionage|Realm of Espionage]] * https://status.realmofespionage.xyz ===== Prerequisites ===== * [[linux:distros:server:opensuse_tumbleweed_server|openSUSE Tumbleweed (Server)]] * [[servers:linux:nginx_php_php-fpm|nginx]] * [[servers:linux:nginx:lets_encrypt|Certbot (Let's Encrypt)]] ====== 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' RoE | Status This is the status page of Realm of Espionage:

Realm of Espionage - Main page
Up

RoE | Wiki - Wiki
Up

RoE | Media - Pictures/Screenshots
Up

RoE | Blog - Blog
Up

RoE | Social - Micro-blog (ActivityPub)
Up

RoE | Forums - Forums
Up

How this webpage is configured
Magic

Daily short downtime for maintenance 2:45 and 6 AM EST
====== 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