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 = <