{"id":5,"date":"2008-09-30T14:29:45","date_gmt":"2008-09-30T14:29:45","guid":{"rendered":"http:\/\/psyphi.net\/blog\/?p=5"},"modified":"2010-01-24T17:18:52","modified_gmt":"2010-01-24T17:18:52","slug":"apache-forward-proxy-remote_addr","status":"publish","type":"post","link":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/","title":{"rendered":"Apache Forward-Proxy REMOTE_ADDR propagation"},"content":{"rendered":"<p>I had an interesting problem this morning with the <a title=\"Apache Web Server\" href=\"http:\/\/httpd.apache.org\/ \">Apache<\/a> forward-proxy supporting the <a title=\"Wellcome Trust Sanger Institute\" href=\"http:\/\/www.sanger.ac.uk\/\">WTSI<\/a> sequencing farm.<\/p>\n<p>It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they&#8217;re on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from intranet services).<\/p>\n<p>Now I&#8217;m very familiar using the X-Forwarded-For header and HTTP_X_FORWARDED_FOR environment variable (and their friends) which do something very similar for reverse-proxies but forward-proxies usually want to disguise the fact there&#8217;s an arbitrary number of clients behind them, usually with irrelevant RFC1918 private IP addresses too.<\/p>\n<p>So what I want to do is slightly unusual &#8211; take the remote_addr of the client and stuff it into a different header. I could use X-Forwarded-For but it doesn&#8217;t feel right. Proxy-Via is also not right here as that&#8217;s really for the proxy servers themselves. So, I figured mod_headers on the proxy would allow me to add additional headers to the request, even though it&#8217;s forwarded on. Also following a tip I saw <a href=\"http:\/\/www.mail-archive.com\/plug@lists.linux.org.ph\/msg17244.html\">here<\/a> using my favourite mod_rewrite and after a bit of fiddling I can up with this:<\/p>\n<pre>\r\n<code>#########\r\n# copy remote addr to an internal variable\r\n#\r\nRewriteEngine  On\r\nRewriteCond  %{REMOTE_ADDR}  (.*)\r\nRewriteRule   .*  -  [E=SEQ_ADDR:%1]\r\n\r\n#########\r\n# set X-Sequencer header from the internal variable\r\n#\r\nRequestHeader  set  X-Sequencer  %{SEQ_ADDR}<\/code>\r\n<\/pre>\n<p>These rules sit in the container managing my proxy, after ProxyRequests and ProxyVia and before a small set of ProxyMatch restrictions.<\/p>\n<p>The RewriteCond traps the contents of the REMOTE_ADDR environment variable (it&#8217;s not an HTTP header &#8211; it comes from the end of the network socket as determined by the server). The RewriteRule unconditionally copies the last RewriteCond match %1 into a new environment variable SEQ_ADDR. After this mod_headers sets the X-Sequencer request header (for the proxied request) to the value of the SEQ_ADDR environment variable.<\/p>\n<p>This works very nicely though I&#8217;d have hoped a more elegant solution would be this:<\/p>\n<pre>\r\n<code>RequestHeader set X-Sequencer %{REMOTE_ADDR}<\/code>\r\n<\/pre>\n<p>but this doesn&#8217;t seem to work and I&#8217;m not sure why. Anyway, by comparing $ENV{HTTP_X_SEQUENCER} to a shared lookup table, the sequencing apps running on the intranet can now track which sequencer is making requests. Yay!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they&#8217;re on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from &hellip; <a href=\"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Apache Forward-Proxy REMOTE_ADDR propagation&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[17],"tags":[6,7,8,1080],"class_list":["post-5","post","type-post","status-publish","format-standard","hentry","category-sysadmin","tag-apache","tag-mod_rewrite","tag-proxy","tag-webdev"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they&#039;re on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Roger Pettett\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"psyphi.net blog - Another collection of braingunk and technolint\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they&#039;re on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2008-09-30T14:29:45+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2010-01-24T17:18:52+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they&#039;re on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#blogposting\",\"name\":\"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog\",\"headline\":\"Apache Forward-Proxy REMOTE_ADDR propagation\",\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"},\"datePublished\":\"2008-09-30T14:29:45+00:00\",\"dateModified\":\"2010-01-24T17:18:52+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#webpage\"},\"articleSection\":\"sysadmin, apache, mod_rewrite, proxy, webdev\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"name\":\"sysadmin\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"position\":2,\"name\":\"sysadmin\",\"item\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#listItem\",\"name\":\"Apache Forward-Proxy REMOTE_ADDR propagation\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#listItem\",\"position\":3,\"name\":\"Apache Forward-Proxy REMOTE_ADDR propagation\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/category\\\/sysadmin\\\/#listItem\",\"name\":\"sysadmin\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/\",\"name\":\"Roger Pettett\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Roger Pettett\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#webpage\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/\",\"name\":\"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog\",\"description\":\"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they're on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/2008\\\/09\\\/apache-forward-proxy-remote_addr\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/author\\\/rmp\\\/#author\"},\"datePublished\":\"2008-09-30T14:29:45+00:00\",\"dateModified\":\"2010-01-24T17:18:52+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/\",\"name\":\"psyphi.net blog\",\"description\":\"Another collection of braingunk and technolint\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/psyphi.net\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog","description":"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they're on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from","canonical_url":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#blogposting","name":"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog","headline":"Apache Forward-Proxy REMOTE_ADDR propagation","author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"},"datePublished":"2008-09-30T14:29:45+00:00","dateModified":"2010-01-24T17:18:52+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#webpage"},"isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#webpage"},"articleSection":"sysadmin, apache, mod_rewrite, proxy, webdev"},{"@type":"BreadcrumbList","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","position":1,"name":"Home","item":"https:\/\/psyphi.net\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","name":"sysadmin"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","position":2,"name":"sysadmin","item":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/","nextItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#listItem","name":"Apache Forward-Proxy REMOTE_ADDR propagation"},"previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#listItem","position":3,"name":"Apache Forward-Proxy REMOTE_ADDR propagation","previousItem":{"@type":"ListItem","@id":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/#listItem","name":"sysadmin"}}]},{"@type":"Organization","@id":"https:\/\/psyphi.net\/blog\/#organization","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","url":"https:\/\/psyphi.net\/blog\/"},{"@type":"Person","@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author","url":"https:\/\/psyphi.net\/blog\/author\/rmp\/","name":"Roger Pettett","image":{"@type":"ImageObject","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/f715f8335258578c567eb8c22335f1cee22c971c2aff8be27c4d8d934c436503?s=96&d=mm&r=g","width":96,"height":96,"caption":"Roger Pettett"}},{"@type":"WebPage","@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#webpage","url":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/","name":"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog","description":"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they're on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/psyphi.net\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/#breadcrumblist"},"author":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"creator":{"@id":"https:\/\/psyphi.net\/blog\/author\/rmp\/#author"},"datePublished":"2008-09-30T14:29:45+00:00","dateModified":"2010-01-24T17:18:52+00:00"},{"@type":"WebSite","@id":"https:\/\/psyphi.net\/blog\/#website","url":"https:\/\/psyphi.net\/blog\/","name":"psyphi.net blog","description":"Another collection of braingunk and technolint","inLanguage":"en-US","publisher":{"@id":"https:\/\/psyphi.net\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"psyphi.net blog - Another collection of braingunk and technolint","og:type":"article","og:title":"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog","og:description":"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they're on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from","og:url":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/","article:published_time":"2008-09-30T14:29:45+00:00","article:modified_time":"2010-01-24T17:18:52+00:00","twitter:card":"summary_large_image","twitter:title":"Apache Forward-Proxy REMOTE_ADDR propagation - psyphi.net blog","twitter:description":"I had an interesting problem this morning with the Apache forward-proxy supporting the WTSI sequencing farm. It would be useful for the intranet service for tracking runs to know which (GA2) sequencer is requesting pages but because they're on a dedicated subnet they have to use a forward-proxy for fetching pages (and then only from"},"aioseo_meta_data":{"post_id":"5","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-05-16 12:32:10","updated":"2025-08-15 17:22:53","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/psyphi.net\/blog\/category\/sysadmin\/\" title=\"sysadmin\">sysadmin<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tApache Forward-Proxy REMOTE_ADDR propagation\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/psyphi.net\/blog"},{"label":"sysadmin","link":"https:\/\/psyphi.net\/blog\/category\/sysadmin\/"},{"label":"Apache Forward-Proxy REMOTE_ADDR propagation","link":"https:\/\/psyphi.net\/blog\/2008\/09\/apache-forward-proxy-remote_addr\/"}],"_links":{"self":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/5","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/comments?post=5"}],"version-history":[{"count":8,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/5\/revisions"}],"predecessor-version":[{"id":24,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/posts\/5\/revisions\/24"}],"wp:attachment":[{"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/media?parent=5"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/categories?post=5"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/psyphi.net\/blog\/wp-json\/wp\/v2\/tags?post=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}