====== Information ====== * Landing page * [[Information:Realm of Espionage]] * https://realmofespionage.xyz ===== Prerequisites ===== * [[bsd:server:freebsd_15.0|FreeBSD 15.0]] * [[servers:bsd:freenginx_php_php-fpm|freenginx]] * [[servers:bsd:nginx:lets_encrypt|Let's Encrypt]] ====== index.html ====== su - mkdir -p '/usr/local/www/main-custom' && chown -R 'www':'www' '/usr/local/www/main-custom' su -m 'www' -c "ee '/usr/local/www/main-custom/index.html'" This is the home page of Realm of Espionage:

Realm of Espionage - Main page (you are here)

RoE | Wiki - Wiki
RoE | Media - Pictures/Screenshots
RoE | Blog - Blog
RoE | Social - Micro-blog (ActivityPub)
RoE | Forums - Forums

Technical Details
Webmaster Info
How this webpage is configured
====== nginx Configuration ====== ===== Server Block ===== ee '/usr/local/etc/freenginx/vhosts.d/main-custom.conf' && service 'nginx' reload server { listen '443' 'ssl'; http2 'on'; server_name 'realmofespionage.xyz'; root '/usr/local/www/main-custom'; index 'index.html'; include '/usr/local/etc/freenginx/default.d/headers.conf'; } # End