{"id":27520,"date":"2020-05-02T14:10:22","date_gmt":"2020-05-02T13:10:22","guid":{"rendered":"https:\/\/home.apeconsulting.co.uk\/adrian\/?p=27520"},"modified":"2020-05-02T14:10:23","modified_gmt":"2020-05-02T13:10:23","slug":"ape-wiki","status":"publish","type":"post","link":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/","title":{"rendered":"APE Wiki"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png\" alt=\"APE Wiki Logo\" class=\"wp-image-27525\" width=\"231\" height=\"180\"\/><\/figure>\n\n\n\n<p>I had a few spare hours yesterday and had been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail.  A few gotchas were found but they were resolved pretty quickly, and I now have my own APE Wiki!<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>It&#8217;s really just another FAMP (FreeBSD-Apache-MySQL-PHP) stack so I pretty much followed the LimeSurvey guide that I&#8217;d created on the FreeNAS forum <a href=\"https:\/\/www.ixsystems.com\/community\/threads\/how-to-create-a-limesurvey-iocage-jail.80626\/\">here<\/a> and which I blogged about <a href=\"https:\/\/home.apeconsulting.co.uk\/adrian\/limesurvey-freebsd-jail\/\">here<\/a>.<\/p>\n\n\n\n<p>I actually created the jail from the WUI and then consoled in using SSH.  I find it much easier to copy and paste things into a macOS Terminal windows that the WUI shell, even though it&#8217;s much improved in FreeNAS 11x.<\/p>\n\n\n\n<p>I found a package for MediaWiki and went for the latest 1.34 version rather than the 1.31 LTS version and installed with <em>pkg install mediawiki134-php74<\/em>.  I didn&#8217;t notice that it uninstalled MariaDB as part of the process, as it installs MySQL!<\/p>\n\n\n\n<p>After installing what I thought was all the packages I required, and making the PHP and Apache configuration changes, I thought I&#8217;d try and access the jail.  Apache was working but wasn&#8217;t serving any PHP, so something wasn&#8217;t quite right.  After a little Googling, I realised that the mod_php74 pkg was missing from the MediaWiki package, as that included Lighttpd and I&#8217;ve never attempted to configure that so thought I&#8217;d install apache24. A quick restart of php-fpm and apache and PHP was working and I could see the installation screen.<\/p>\n\n\n\n<p>I knew it wouldn&#8217;t work yet as I hadn&#8217;t configured the database, but thought I&#8217;d test things beyond the first screen, which identified a number of other issues.  Easiest to fix was the missing APCu and ImageMagick, with the packages installed via pkg install php74-pecl-APCu ImageMagick7.  I&#8217;d already added the configuration line into the PHP.ini file so that got those working.<\/p>\n\n\n\n<p>The other error took a little more time to resolve and related to Gizzlehttp.  I can&#8217;t remember the exact error (it spanned several lines) but I googled parts of it and got various different suggestions.  One suggested a database error, which did flag up the uninstallation of the MariaDB package I&#8217;d installed earlier, but the MediaWiki pkg had removed.  Reinstalling this remove the MediaWiki folder, and highlighted my lack of understanding exactly how packages work!<\/p>\n\n\n\n<p>In the end, I managed to use <em>pkg lock mediawiki134-php74<\/em> and then <em>pkg install mariadb104<\/em> (which removed the MySQL-client conflict) although did not resolve the Grizzlehttp error!  Further googling suggested a number of different solutions, not of which seemed relevant nor worked (at least the one I tried).  It eventually turned out to be a very simple fix &#8211; another missing PHP module, this time resolved by <em>pkg install php74-filter<\/em>.  I really should remember to check PHP modules first!!<\/p>\n\n\n\n<p>After this, it was pretty plain sailing, and (almost) everything worked as expected.  I configured a database and ran the installer again which got APE Wiki up and running.  I reconfigured my SSL-proxy jail to create a new certificate and a secure connection (I&#8217;d used the sub-domain before, so didn&#8217;t need to redirect it to my server).  Creating and adding a logo was pretty straight forward, editing the LocalSettings.php file and pointing it to the image at the top of this blog.<\/p>\n\n\n\n<p>Getting a smaller version in the browser tab provided slightly more challenging, and simply copying to the root folder didn&#8217;t work.  I ended up having to host this on another webserver I have running, as it needs to be in the favicon.ico format and WordPress can&#8217;t deal with that in a blog.  Getting my webserver to serve it meant some changes to the configuration, although I got there in the end.<\/p>\n\n\n\n<p>So that&#8217;s it.  Not really sure what I&#8217;m going to do with it now it&#8217;s up and running, although I do like the Wikipedia platform, and it&#8217;s based around the MediaWiki software, so it would be good to learn a little about how it works.  We&#8217;re still in lockdown and my contract has been extended for another month, so I still don&#8217;t have much spare time, although I did manage to waste a few hours getting APE Wiki up and running \ud83d\ude09<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I had a few spare hours yesterday and had been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail. A few gotchas were found but they were resolved pretty quickly, and I now have my own APE Wiki!<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[19,2,9,10],"tags":[21],"class_list":["post-27520","post","type-post","status-publish","format-standard","hentry","category-freenas","category-it","category-server","category-software","tag-spellchecked"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>APE Wiki - Adrian&#039;s Blog<\/title>\n<meta name=\"description\" content=\"I&#039;d been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha&#039;s I now have my own APE Wiki!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"APE Wiki - Adrian&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"I&#039;d been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha&#039;s I now have my own APE Wiki!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/\" \/>\n<meta property=\"og:site_name\" content=\"Adrian&#039;s Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-02T13:10:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-02T13:10:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png\" \/>\n<meta name=\"author\" content=\"Adrian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adrian\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/\"},\"author\":{\"name\":\"Adrian\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#\\\/schema\\\/person\\\/f63f15ff50bb8f956afdd86a816c5d2a\"},\"headline\":\"APE Wiki\",\"datePublished\":\"2020-05-02T13:10:22+00:00\",\"dateModified\":\"2020-05-02T13:10:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/\"},\"wordCount\":726,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#\\\/schema\\\/person\\\/f63f15ff50bb8f956afdd86a816c5d2a\"},\"image\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2020\\\/05\\\/APE-mediawiki.png\",\"keywords\":[\"Checked\"],\"articleSection\":[\"FreeNAS\",\"IT\",\"Server\",\"Software\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/\",\"url\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/\",\"name\":\"APE Wiki - Adrian&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2020\\\/05\\\/APE-mediawiki.png\",\"datePublished\":\"2020-05-02T13:10:22+00:00\",\"dateModified\":\"2020-05-02T13:10:23+00:00\",\"description\":\"I'd been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha's I now have my own APE Wiki!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#primaryimage\",\"url\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2020\\\/05\\\/APE-mediawiki.png\",\"contentUrl\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2020\\\/05\\\/APE-mediawiki.png\",\"width\":924,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/ape-wiki\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"APE Wiki\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#website\",\"url\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/\",\"name\":\"Adrian&#039;s Blog\",\"description\":\"Ramblings of an IT Geek\",\"publisher\":{\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#\\\/schema\\\/person\\\/f63f15ff50bb8f956afdd86a816c5d2a\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/home.apeconsulting.co.uk\\\/adrian\\\/#\\\/schema\\\/person\\\/f63f15ff50bb8f956afdd86a816c5d2a\",\"name\":\"Adrian\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g\",\"caption\":\"Adrian\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"APE Wiki - Adrian&#039;s Blog","description":"I'd been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha's I now have my own APE Wiki!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/","og_locale":"en_GB","og_type":"article","og_title":"APE Wiki - Adrian&#039;s Blog","og_description":"I'd been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha's I now have my own APE Wiki!","og_url":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/","og_site_name":"Adrian&#039;s Blog","article_published_time":"2020-05-02T13:10:22+00:00","article_modified_time":"2020-05-02T13:10:23+00:00","og_image":[{"url":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png","type":"","width":"","height":""}],"author":"Adrian","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Adrian","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#article","isPartOf":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/"},"author":{"name":"Adrian","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#\/schema\/person\/f63f15ff50bb8f956afdd86a816c5d2a"},"headline":"APE Wiki","datePublished":"2020-05-02T13:10:22+00:00","dateModified":"2020-05-02T13:10:23+00:00","mainEntityOfPage":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/"},"wordCount":726,"commentCount":1,"publisher":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#\/schema\/person\/f63f15ff50bb8f956afdd86a816c5d2a"},"image":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#primaryimage"},"thumbnailUrl":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png","keywords":["Checked"],"articleSection":["FreeNAS","IT","Server","Software"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/","url":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/","name":"APE Wiki - Adrian&#039;s Blog","isPartOf":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#website"},"primaryImageOfPage":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#primaryimage"},"image":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#primaryimage"},"thumbnailUrl":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png","datePublished":"2020-05-02T13:10:22+00:00","dateModified":"2020-05-02T13:10:23+00:00","description":"I'd been meaning to try and recreate the MediaWiki docker container inside a FreeNAS jail, and after a few gotcha's I now have my own APE Wiki!","breadcrumb":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#primaryimage","url":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png","contentUrl":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-content\/uploads\/sites\/2\/2020\/05\/APE-mediawiki.png","width":924,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/ape-wiki\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/home.apeconsulting.co.uk\/adrian\/"},{"@type":"ListItem","position":2,"name":"APE Wiki"}]},{"@type":"WebSite","@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#website","url":"https:\/\/home.apeconsulting.co.uk\/adrian\/","name":"Adrian&#039;s Blog","description":"Ramblings of an IT Geek","publisher":{"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#\/schema\/person\/f63f15ff50bb8f956afdd86a816c5d2a"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/home.apeconsulting.co.uk\/adrian\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/home.apeconsulting.co.uk\/adrian\/#\/schema\/person\/f63f15ff50bb8f956afdd86a816c5d2a","name":"Adrian","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g","caption":"Adrian"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/c2e5d9012573aedee25fd68deb071781d974af50ae74bf73aeb0e70433f7390c?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p90DI4-79S","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/posts\/27520","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/comments?post=27520"}],"version-history":[{"count":10,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/posts\/27520\/revisions"}],"predecessor-version":[{"id":27540,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/posts\/27520\/revisions\/27540"}],"wp:attachment":[{"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/media?parent=27520"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/categories?post=27520"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/home.apeconsulting.co.uk\/adrian\/wp-json\/wp\/v2\/tags?post=27520"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}