====== Information ====== * Test page * [[information:realm_of_espionage|Realm of Espionage]] * https://test.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/test-custom' && sudo -e '/srv/www/test-custom/index.html' && sudo chown -R 'wwwrun':'www' '/srv/www/test-custom' && sudo chmod -R '0755' '/srv/www/test-custom' RoE | Test If you can read this, cool! ====== nginx Configuration ====== ===== Server Block ===== sudo -e '/etc/nginx/vhosts.d/test-custom.conf' && sudo systemctl reload 'nginx' server { listen '443' 'ssl'; http2 'on'; server_name 'test.realmofespionage.xyz'; root '/srv/www/test-custom'; index 'index.html'; include '/etc/nginx/default.d/headers.conf'; } # End