====== Information ======
* WordPress ((https://wordpress.org))
* [[information;realm_of_espionage|Realm of Espionage]]
* https://blog.realmofespionage.xyz
===== Prerequisites =====
* [[windows;10_ltsc_server|Windows 10 (21H2)]]
* [[servers;windows;nginx_php_php-cgi|nginx + PHP + PHP-CGI]]
* [[servers;windows;nginx;lets_encrypt|Certbot (Let's Encrypt)]]
* [[programs;windows;git|Git]]
* [[servers;windows;mariadb|MariaDB]]
====== Dependencies ======
* https://wordpress.org/about/requirements/
* https://make.wordpress.org/hosting/handbook/server-environment/#php-extensions
====== Download Source ======
* https://github.com/WordPress/WordPress/commits/master/
"%ProgramFiles%\Git\bin\git.exe" clone --branch "master" --depth "1" --recurse-submodules "https://github.com/WordPress/WordPress.git" "%SystemDrive%\www\blog"
====== Database ======
"%ProgramFiles%\MariaDB 12.2\bin\mariadb.exe" -u "root"
CREATE DATABASE wordpress;
CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'x';
GRANT ALL PRIVILEGES ON wordpress.* to 'wordpress'@'localhost';
FLUSH PRIVILEGES;EXIT;
====== Environment ======
===== PHP =====
"notepad.exe" "%SystemDrive%\www\php\blog.ini"
[PHP]
extension_dir = ".\ext"
extension = "curl"
extension = "exif"
extension = "fileinfo"
extension = "gd"
extension = "intl"
extension = "mbstring"
extension = "mysqli"
extension = "openssl"
extension = "sodium"
log_errors = "Off"
error_reporting = "~E_ALL"
display_errors = "Off"
display_startup_errors = "Off"
html_errors = "Off"
[Date]
date.timezone = "America/New_York"
; End
"php.exe" -c "%SystemDrive%\www\php\blog.ini" -m
====== nginx + PHP-CGI Configuration ======
===== PHP-CGI =====
"notepad.exe" "%SystemDrive%\www\nginx\default.d\blog.conf"
location "~" "\.(php)(/.*)?$" {
fastcgi_split_path_info "^(.+\.(?:php))(/.*)$";
fastcgi_intercept_errors "on";
fastcgi_index "index.php";
include "C:/www/nginx/conf/fastcgi_params";
fastcgi_param "SCRIPT_FILENAME" "$document_root$fastcgi_script_name";
fastcgi_param "PATH_INFO" "$fastcgi_path_info";
fastcgi_param "HTTPS" "on";
fastcgi_pass "127.0.0.1:9004";
}
# End
===== Themes Deny =====
* https://github.com/WordPress/WordPress/tree/master/wp-content/themes
* Deny all except ''twentytwentyfive''
"notepad.exe" "%SystemDrive%\www\nginx\default.d\wp-themes-deny.conf"
location "~" "/wp-content/themes/(twentyeleven|twentyfifteen|twentyfourteen|twentynineteen|twentyseventeen|twentysixteen|twentyten|twentythirteen|twentytwelve|twentytwentyfour|twentytwentyone|twentytwentythree|twentytwentytwo|twentytwenty)/" {
deny "all";
}
# End
===== Server Block =====
"notepad.exe" "%SystemDrive%\www\nginx\vhosts.d\blog.conf"
server {
listen "443" "ssl";
http2 "on";
server_name "blog.realmofespionage.xyz";
root "C:/www/blog";
index "index.php";
include "C:/www/nginx/default.d/blog.conf";
include "C:/www/nginx/default.d/headers.conf";
include "C:/www/nginx/default.d/wp-themes-deny.conf";
# access_log "logs/blog-access.log";
# error_log "logs/blog-error.log";
location "/" {
try_files "$uri" "$uri/" "/index.php?$args";
}
rewrite "/wp-admin$" "$scheme://$host$uri/" "permanent";
}
# End
"%SystemDrive%\www\scripts\nginx\Reload.bat"
====== Scripts ======
MKDIR "%SystemDrive%\www\scripts\blog"
"explorer.exe" "%SystemDrive%\www\scripts\blog"
===== PHP-CGI =====
"notepad.exe" "%SystemDrive%\www\scripts\blog\PHP-CGI.bat"
@echo off
CD "%Temp%"
SET "PHP_FCGI_MAX_REQUESTS=0"
SET "PHP_FCGI_CHILDREN=1"
START "Blog PHP-CGI" /MIN "php-cgi.exe" -b "127.0.0.1:9004" -c "%SystemDrive%\www\php\blog.ini" -q
SET "PHP_FCGI_MAX_REQUESTS="
SET "PHP_FCGI_CHILDREN="
:: End
"%SystemDrive%\www\scripts\blog\PHP-CGI.bat"
===== Update =====
"notepad.exe" "%SystemDrive%\www\scripts\blog\Update.bat"
@echo off
TITLE Blog Updater
CD "%Temp%"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" reset --hard "origin/master"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" pull origin "master" --rebase
:: End
"%SystemDrive%\www\scripts\blog\Update.bat"
===== Back-up =====
"notepad.exe" "%SystemDrive%\www\scripts\blog\Back-up.bat"
@echo off
TITLE Blog Back-up
CD "%Temp%"
"tar.exe" -czf "D:\Servers\Scheduled Backups\wordpress-files-auto-%RANDOM%.tar.gz" -C "%SystemDrive%\www" "blog"
"%ProgramFiles%\MariaDB 12.2\bin\mariadb-dump.exe" -u "root" --opt -r "D:\Servers\Scheduled Backups\%RANDOM%-wordpress.sql" "wordpress"
::"tar.exe" -czf "%UserProfile%\Downloads\wordpress-files-auto-%RANDOM%.tar.gz" -C "%SystemDrive%\www" "blog"
::"%ProgramFiles%\MariaDB 12.2\bin\mariadb-dump.exe" -u "root" --opt -r "%UserProfile%\Downloads\%RANDOM%-wordpress.sql" "wordpress"
:: End
"%SystemDrive%\www\scripts\blog\Back-up.bat"
===== Maintenance =====
"notepad.exe" "%SystemDrive%\www\scripts\blog\Maintenance.bat"
@echo off
TITLE Blog Maintenance
CD "%Temp%"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" gc --aggressive --prune="all"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" fsck --full --strict
:: End
"%SystemDrive%\www\scripts\blog\Maintenance.bat"
===== Git Fix =====
* :!: Set ''user.email''
"notepad.exe" "%SystemDrive%\www\scripts\blog\Git Fix.bat"
@echo off
TITLE Blog Git Fix
CD "%Temp%"
::##################
::# Content Back-up
::##################
MKDIR "%SystemDrive%\www\temp\blog"
MOVE /Y "%SystemDrive%\www\blog\wp-content\uploads" "%SystemDrive%\www\temp\blog"
COPY /Y "%SystemDrive%\www\blog\wp-config.php" "%SystemDrive%\www\temp\blog"
::##################
::# WordPress
::##################
RMDIR /S /Q "%SystemDrive%\www\blog\.git"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" init --initial-branch="master"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" add "."
::######################################
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" config "user.email" "espionage724@x"
::######################################
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" commit --message="x"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" remote add "origin" "https://github.com/WordPress/WordPress.git"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" pull --depth "1" --recurse-submodules "origin" "master" --rebase
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" reset --hard "origin/master"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" gc --aggressive --prune="all"
"%ProgramFiles%\Git\bin\git.exe" -C "%SystemDrive%\www\blog" fsck --full --strict
::##################
::# Content Restore
::##################
MOVE /Y "%SystemDrive%\www\temp\blog\uploads" "%SystemDrive%\www\blog\wp-content"
MOVE /Y "%SystemDrive%\www\temp\blog\wp-config.php" "%SystemDrive%\www\blog\wp-config.php"
RMDIR /S /Q "%SystemDrive%\www\temp\blog"
:: End
"%SystemDrive%\www\scripts\blog\Git Fix.bat"
====== Task Scheduler ======
===== PHP-CGI =====
* Auto-start
SCHTASKS /Create /SC "ONLOGON" /TN "Blog PHP-CGI" /TR "%SystemDrive%\www\scripts\blog\PHP-CGI.bat" /F
===== Update =====
* Daily ''02:00:00 AM''
SCHTASKS /Create /SC "DAILY" /TN "Blog Update" /TR "%SystemDrive%\www\scripts\blog\Update.bat" /ST "02:00" /F
===== Back-up =====
* Monthly (3rd) ''02:10:00 AM''
SCHTASKS /Create /SC "MONTHLY" /D "3" /M "*" /TN "Blog Back-up" /TR "%SystemDrive%\www\scripts\blog\Back-up.bat" /ST "02:10" /F
===== Maintenance =====
* Monthly (3rd) ''02:30:00 AM''
SCHTASKS /Create /SC "MONTHLY" /D "3" /M "*" /TN "Blog Maintenance" /TR "%SystemDrive%\www\scripts\blog\Maintenance.bat" /ST "02:30" /F
====== Initial Setup ======
* https://blog.realmofespionage.xyz
* Database Host: ''localhost''
====== Settings ======
* Date Format -> Custom: ''Y/m/d''
* Permalink structure: ''[x]'' Plain
===== wp-config.php =====
* https://github.com/WordPress/WordPress/blob/master/wp-config-sample.php
* https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
* ''SCRIPT_DEBUG'' at ''true'' loads non-minified scripts/CSS ([[https://github.com/WordPress/WordPress/blob/master/wp-includes/script-loader.php#L6|source]]) ((2026/01/06: Fixed 2025 theme loading odd buttons in header))
* :!: Change ''DB_PASSWORD''
"notepad.exe" "%SystemDrive%\www\blog\wp-config.php"
====== Backup ======
===== Folder =====
****
"tar.exe" -czf "%UserProfile%\Downloads\wordpress-files-manual-%RANDOM%.tar.gz" -C "%SystemDrive%\www" "blog"
===== Database =====
****
CD "%USERPROFILE%\Downloads" && "%PROGRAMFILES%\MariaDB 12.2\bin\mariadb-dump.exe" -u "root" --opt -r "wordpress.sql" "wordpress"
====== Restore ======
===== Database =====
* [[#database|Initial set-up]]
"%ProgramFiles%\MariaDB 12.2\bin\mariadb.exe" -u "root" --execute="CREATE DATABASE wordpress"
"%ProgramFiles%\MariaDB 12.2\bin\mariadb.exe" -u "root" "wordpress" < "%UserProfile%\Downloads\wordpress.sql"