From c06d80fc6300c4e0f882892e36948f9e60c56792 Mon Sep 17 00:00:00 2001 From: wizzdom Date: Tue, 6 Aug 2024 00:34:31 +0100 Subject: [PATCH] add wiki.redbrick.dcu.ie (#49) Adds `mediawiki.hcl` - migrated to latest mediawiki LTS - using php-fpm and nginx Adds `mediawiki-backup.hcl` - backup of mariadb - full xml dump of mediawiki Co-authored-by: Ayden --- jobs/services/mediawiki-backup.hcl | 89 ++++++ jobs/services/mediawiki.hcl | 438 +++++++++++++++++++++++++++++ 2 files changed, 527 insertions(+) create mode 100644 jobs/services/mediawiki-backup.hcl create mode 100644 jobs/services/mediawiki.hcl diff --git a/jobs/services/mediawiki-backup.hcl b/jobs/services/mediawiki-backup.hcl new file mode 100644 index 0000000..bbef3e3 --- /dev/null +++ b/jobs/services/mediawiki-backup.hcl @@ -0,0 +1,89 @@ +job "mediawiki-backup" { + datacenters = ["aperture"] + type = "batch" + + periodic { + crons = ["0 */3 * * * *"] + prohibit_overlap = true + } + + group "db-backup" { + task "mysql-backup" { + driver = "raw_exec" + + config { + command = "/bin/bash" + args = ["local/mysql-backup.sh"] + } + + template { + data = < "${file}" + +find /storage/backups/nomad/wiki/mysql/rbwiki-mysql* -ctime +3 -exec rm {} \; || true + +if [ -s "$file" ]; then # check if file exists and is not empty + echo "Backup successful" + exit 0 +else + rm $file + curl -H "Content-Type: application/json" -d \ + '{"content": "<@&585512338728419341> `MySQL` backup for **'"${job_name}"'** has just **FAILED**\nFile name: `'"$file"'`\nDate: `'"$(TZ=Europe/Dublin date)"'`\nTurn off this script with `nomad job stop '"${job_name}"'` \n\n## Remember to restart this backup job when fixed!!!"}' \ + {{ key "mysql/webhook/discord" }} +fi +EOH + destination = "local/mysql-backup.sh" + } + } + } + group "xml-dump" { + task "xml-dump" { + driver = "raw_exec" + + config { + command = "/bin/bash" + args = ["local/xml-dump.sh"] + } + + template { + data = < "${file}" + +find /storage/backups/nomad/wiki/xml/rbwiki-dump* -ctime +3 -exec rm {} \; || true + +if [ -n "$(find ${file} -prune -size +100000000c)" ]; then # check if file exists and is not empty + echo "Backup successful" + exit 0 +else + rm $file + curl -H "Content-Type: application/json" -d \ + '{"content": "<@&585512338728419341> `dumpBackup.php` backup for **'"${job_name}"'** has just **FAILED**\nFile name: `'"$file"'`\nDate: `'"$(TZ=Europe/Dublin date)"'`\nTurn off this script with `nomad job stop '"${job_name}"'` \n\n## Remember to restart this backup job when fixed!!!"}' \ + {{ key "mysql/webhook/discord" }} +fi +EOH + destination = "local/xml-dump.sh" + } + } + } +} + diff --git a/jobs/services/mediawiki.hcl b/jobs/services/mediawiki.hcl new file mode 100644 index 0000000..458998f --- /dev/null +++ b/jobs/services/mediawiki.hcl @@ -0,0 +1,438 @@ +job "mediawiki" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "wiki.redbrick.dcu.ie" + } + + group "rbwiki" { + count = 1 + + network { + mode = "bridge" + port "http" { + to = 80 + } + port "fpm" { + to = 9000 + } + port "db" { + to = 3306 + } + } + + service { + name = "rbwiki-web" + port = "http" + + check { + type = "http" + path = "/Main_Page" + interval = "10s" + timeout = "5s" + } + + tags = [ + "traefik.enable=true", + "traefik.port=${NOMAD_PORT_http}", + "traefik.http.routers.rbwiki.rule=Host(`${NOMAD_META_domain}`)", + "traefik.http.routers.rbwiki.entrypoints=web,websecure", + "traefik.http.routers.rbwiki.tls.certresolver=lets-encrypt", + "traefik.http.routers.rbwiki.middlewares=redirect-short-url", + "traefik.http.middlewares.redirect-short-url.redirectregex.regex=https://wiki\\.redbrick\\.dcu\\.ie/index\\.php\\?title=(.*)", + "traefik.http.middlewares.redirect-short-url.redirectregex.replacement=https://wiki.redbrick.dcu.ie/$1", + "traefik.http.routers.rbwiki.middlewares=redirect-root", + "traefik.http.middlewares.redirect-root.redirectregex.regex=^https://wiki\\.redbrick\\.dcu\\.ie/?$", + "traefik.http.middlewares.redirect-root.redirectregex.replacement=https://wiki.redbrick.dcu.ie/Main_Page", + # "traefik.http.routers.rbwiki.middlewares=redirect-mw", + # "traefik.http.middlewares.redirect-mw.redirectregex.regex=https://wiki\\.redbrick\\.dcu\\.ie/Mw/(.*)", + # "traefik.http.middlewares.redirect-mw.redirectregex.replacement=https://wiki.redbrick.dcu.ie/$1", + ] + } + + task "rbwiki-nginx" { + driver = "docker" + config { + image = "nginx:alpine" + ports = ["http"] + volumes = [ + "local/nginx.conf:/etc/nginx/nginx.conf", + "/storage/nomad/mediawiki/extensions:/var/www/html/extensions", + "/storage/nomad/mediawiki/images:/var/www/html/images", + "/storage/nomad/mediawiki/skins:/var/www/html/skins", + "/storage/nomad/mediawiki/resources/assets:/var/www/html/Resources/assets", + ] + } + resources { + cpu = 200 + memory = 100 + } + template { + data = < 'LDAPAuthentication2', + 'data' => [ + 'domain' => 'LDAP' + ], +]; + +# RBOnly Namespace +# To allow semi-public pages +$wgExtraNamespaces = array(100 => "RBOnly", 101 => "RBOnly_talk"); +$wgNamespacesWithSubpages = array( -1 => 0, 0 => 0, 1 => 1, 2 => 1, 3 => 1, 4 => 0, 5 => 1, 6 => 0, 7 => 1, 8 => 0, 9 => 1, 10 => 0, 11 => 1,100 => 1,101 => 1); +$wgNamespacesToBeSearchedDefault = array( -1 => 0, 0 => 1, 1 => 0, 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 0, 10 => 0, 11 => 0,100 => 0,101 => 0); +$wgNonincludableNamespaces[] = 100; + +$wgGroupPermissions['*']['readrbonly'] = false; +$wgGroupPermissions['sysop']['readrbonly'] = true; + +$wgNamespaceProtection[ 100 ] = array( 'readrbonly' ); + +# group permissions +$wgGroupPermissions['*']['autocreateaccount'] = true; +$wgGroupPermissions['*']['createaccount'] = false; +$wgGroupPermissions['*']['read'] = true; +$wgGroupPermissions['*']['edit'] = false; + +# Exclude user group page views from counting. +$wgGroupPermissions['sysop']['hitcounter-exempt'] = true; + +# When set to true, it adds the PageId to the special page "PopularPages". The default value is false. +$wgEnableAddPageId = false; + +# When set to true, it adds the TextLength to the special page "PopularPages". The default value is false. +$wgEnableAddTextLength = true; + +# debug logs +# $wgDebugDumpSql = true; +$wgShowExceptionDetails = true; +$wgShowDBErrorBacktrace = true; +$wgShowSQLErrors = true; +$wgDebugLogFile = "/dev/stderr"; +EOH + + destination = "local/LocalSettings.php" + } + } + + service { + name = "rbwiki-db" + port = "db" + + check { + name = "mariadb_probe" + type = "tcp" + interval = "10s" + timeout = "2s" + } + } + + task "rbwiki-db" { + driver = "docker" + + constraint { + attribute = "${attr.unique.hostname}" + value = "glados" + } + + config { + image = "mariadb" + ports = ["db"] + + volumes = [ + "/opt/mediawiki-db:/var/lib/mysql", + "/oldstorage/wiki_backups:/wiki-backups/backup", + "local/conf.cnf:/etc/mysql/mariadb.conf.d/50-server.cnf", + ] + } + + template { + data = <