{"id":78,"date":"2023-08-06T11:05:52","date_gmt":"2023-08-06T11:05:52","guid":{"rendered":"https:\/\/hosting.foto-sjoet.nl\/?p=78"},"modified":"2023-08-08T16:29:15","modified_gmt":"2023-08-08T16:29:15","slug":"wireguard-op-de-raspberry-pi","status":"publish","type":"post","link":"https:\/\/hosting.foto-sjoet.nl\/?p=78","title":{"rendered":"Wireguard op de Raspberry PI"},"content":{"rendered":"\n<p>Wireguard is een VPN oplossing en draait prima op een PI. ik maak gebruik van een Wireguard icm Pihole. Hiermee kan je onderweg op je Smartphone :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>een VPN opzetten naar je eigen netwerk (full mode) dit houdt in als je op een openbaar wifi netwerk zit dat er niks getraceerd kan worden door de aanbieder van de openbare wifi<\/li>\n\n\n\n<li>Reclame vrij het internet op, pagina&#8217;s laden sneller en het is  ook beter voor je internet bundel<\/li>\n\n\n\n<li>je kan dus ook bij bijvoorbeeld ook je Home assistent gebruiken en je nas benaderen zonder extras porten open te zetten op je router   <\/li>\n\n\n\n<li>Er moet wel een poort op je router open gezet worden  51820  UDP<\/li>\n<\/ul>\n\n\n\n<p>hier is mijn docker-compose.yml file <\/p>\n\n\n\n<p>&#8212; begin &#8212;- <\/p>\n\n\n\n<p>version: &#8220;3&#8221;<\/p>\n\n\n\n<p>networks:<br>private_network:<br>ipam:<br>driver: default<br>config:<br>&#8211; subnet: 10.2.0.0\/24<\/p>\n\n\n\n<p>services:<br>unbound:<br>image: &#8220;mvance\/unbound-rpi:latest&#8221;<br>container_name: unbound<br>restart: unless-stopped<br>hostname: &#8220;unbound&#8221;<br>volumes:<br>&#8211; &#8220;.\/unbound:\/unbound\/&#8221;<br>networks:<br>private_network:<br>ipv4_address: 10.2.0.200<\/p>\n\n\n\n<p>wireguard:<br>depends_on: [unbound, pihole]<br>image: linuxserver\/wireguard<br>container_name: wireguard<br>cap_add:<br>&#8211; NET_ADMIN<br>&#8211; SYS_MODULE<br>environment:<br>&#8211; PUID=1000<br>&#8211; PGID=1000<br>&#8211; TZ=America\/Los_Angeles # Change to your timezone<br>&#8211; SERVERPORT=51820<br>#- SERVERURL=my.ddns.net #optional &#8211; For use with DDNS (Uncomment to use)<br>&#8211; PEERS=2 # How many peers to generate for you (clients)<br>&#8211; PEERDNS=10.2.0.100 # Set it to point to pihole<br>&#8211; INTERNAL_SUBNET=10.6.0.0<\/p>\n\n\n\n<p>volumes:   <br>&#8211; .\/wireguard:\/config   <br>&#8211; \/lib\/modules:\/lib\/modules <br>ports:  <br>&#8211; &#8220;51820:51820\/udp&#8221; <br>dns:   <br>&#8211; 10.2.0.100 # Points to pihole   <br>&#8211; 10.2.0.200 # Points to unbound <br>sysctls:  <br>&#8211; net.ipv4.conf.all.src_valid_mark=1 <br>restart: unless-stopped <br>networks:   private_network:     ipv4_address: 10.2.0.3<\/p>\n\n\n\n<p>pihole:<br>depends_on: [unbound]<br>container_name: piholewg<br>image: pihole\/pihole:latest<br>restart: unless-stopped<br>hostname: pihole<br>dns:<br>&#8211; 127.0.0.1<br>&#8211; 10.2.0.200 # Points to unbound<br>environment:<br>TZ: &#8220;Eurupe\/Amsterdam&#8221;<br>WEBPASSWORD: &#8220;Welkom1965&#8221; # Blank password &#8211; Can be whatever you want.<br>ServerIP: 10.2.0.100 # Internal IP of pihole<br>DNS1: 10.2.0.200 # Unbound IP<br>DNS2: 10.2.0.200 # If we don&#8217;t specify two, it will auto pick google.<br># Volumes store your data between container upgrades<br>volumes:<br>&#8211; &#8220;.\/etc-pihole\/:\/etc\/pihole\/&#8221;<br>&#8211; &#8220;.\/etc-dnsmasq.d\/:\/etc\/dnsmasq.d\/&#8221;<br># Recommended but not required (DHCP needs NET_ADMIN)<br># https:\/\/github.com\/pi-hole\/docker-pi-hole#note-on-capabilities<br>cap_add:<br>&#8211; NET_ADMIN<br>networks:<br>private_network:<br>ipv4_address: 10.2.0.100<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Safe de file en start de Docker via:<\/p>\n\n\n\n<p>docker-compose up -d<\/p>\n\n\n\n<p>Na de download  en het starten zal je zien :<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"834\" height=\"206\" src=\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-06-at-13.54.19.png\" alt=\"\" class=\"wp-image-91\" srcset=\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-06-at-13.54.19.png 834w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-06-at-13.54.19-300x74.png 300w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-06-at-13.54.19-768x190.png 768w\" sizes=\"auto, (max-width: 834px) 100vw, 834px\" \/><\/figure>\n\n\n\n<p>Als je vervolgens die commando uitvoert  &#8220;docker-compose logs&#8221; krijg je veel output als je omhoog scrolt zie je de QR code die je kan gebruiken op je smartphone om de configuratie te importeren en actief te maken.  De file kan je ook vinden in de .\/wireguard\/peer1\/peer1.png deze kan je ook makkelijk vinden en bekijken als je naar je share van de PI gaat dit leg in binnenkort uit in een nieuw blog. <\/p>\n\n\n\n<p>Als je nu op de de verbinding actief maakt kan je op je eigen netwerk komen en meteen gebruik maken van PI hole. <br><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"473\" height=\"1024\" src=\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-473x1024.png\" alt=\"\" class=\"wp-image-96\" srcset=\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-473x1024.png 473w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-139x300.png 139w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-768x1662.png 768w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-710x1536.png 710w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561-947x2048.png 947w, https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/IMG_7561.png 1284w\" sizes=\"auto, (max-width: 473px) 100vw, 473px\" \/><\/figure>\n\n\n\n<p>Als de VPN actief is kan je op je mobiel via <a href=\"http:\/\/10.2.0.100\/admin\">http:\/\/10.2.0.100\/admin<\/a> op de admin pagina komen van PI hole van deze container, het wachtwoord staat in de docker-compose.yml <\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wireguard is een VPN oplossing en draait prima op een PI. ik maak gebruik van een Wireguard icm Pihole. Hiermee kan je onderweg op je<\/p>\n","protected":false},"author":1,"featured_media":83,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[13,11,17,16],"class_list":["post-78","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-raspberry","tag-docker","tag-pi-hole","tag-vpn","tag-wireguard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hosting.foto-sjoet.nl\/?p=78\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant\" \/>\n<meta property=\"og:description\" content=\"Wireguard is een VPN oplossing en draait prima op een PI. ik maak gebruik van een Wireguard icm Pihole. Hiermee kan je onderweg op je\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hosting.foto-sjoet.nl\/?p=78\" \/>\n<meta property=\"og:site_name\" content=\"Hosting | Raspberry | Home Assistant\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-06T11:05:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-08T16:29:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"256\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hans\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hans\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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:\/\/hosting.foto-sjoet.nl\/?p=78#article\",\"isPartOf\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78\"},\"author\":{\"name\":\"Hans\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb\"},\"headline\":\"Wireguard op de Raspberry PI\",\"datePublished\":\"2023-08-06T11:05:52+00:00\",\"dateModified\":\"2023-08-08T16:29:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78\"},\"wordCount\":493,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb\"},\"image\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png\",\"keywords\":[\"Docker\",\"Pi hole\",\"VPN\",\"WIreguard\"],\"articleSection\":[\"Raspberry\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hosting.foto-sjoet.nl\/?p=78#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78\",\"url\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78\",\"name\":\"Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant\",\"isPartOf\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png\",\"datePublished\":\"2023-08-06T11:05:52+00:00\",\"dateModified\":\"2023-08-08T16:29:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hosting.foto-sjoet.nl\/?p=78\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage\",\"url\":\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png\",\"contentUrl\":\"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png\",\"width\":512,\"height\":256},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/?p=78#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hosting.foto-sjoet.nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wireguard op de Raspberry PI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#website\",\"url\":\"https:\/\/hosting.foto-sjoet.nl\/\",\"name\":\"Hosting | Raspberry | Home Assistant\",\"description\":\"Backup | installatie hulp |\",\"publisher\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hosting.foto-sjoet.nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb\",\"name\":\"Hans\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dfad6d4508122ec2e3204d3a7249ee191d3a677250ca9d691d6b7b57cc9f5e5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dfad6d4508122ec2e3204d3a7249ee191d3a677250ca9d691d6b7b57cc9f5e5f?s=96&d=mm&r=g\",\"caption\":\"Hans\"},\"logo\":{\"@id\":\"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/hosting.foto-sjoet.nl\"],\"url\":\"https:\/\/hosting.foto-sjoet.nl\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant","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:\/\/hosting.foto-sjoet.nl\/?p=78","og_locale":"en_US","og_type":"article","og_title":"Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant","og_description":"Wireguard is een VPN oplossing en draait prima op een PI. ik maak gebruik van een Wireguard icm Pihole. Hiermee kan je onderweg op je","og_url":"https:\/\/hosting.foto-sjoet.nl\/?p=78","og_site_name":"Hosting | Raspberry | Home Assistant","article_published_time":"2023-08-06T11:05:52+00:00","article_modified_time":"2023-08-08T16:29:15+00:00","og_image":[{"width":512,"height":256,"url":"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png","type":"image\/png"}],"author":"Hans","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Hans","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#article","isPartOf":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78"},"author":{"name":"Hans","@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb"},"headline":"Wireguard op de Raspberry PI","datePublished":"2023-08-06T11:05:52+00:00","dateModified":"2023-08-08T16:29:15+00:00","mainEntityOfPage":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78"},"wordCount":493,"commentCount":0,"publisher":{"@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb"},"image":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage"},"thumbnailUrl":"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png","keywords":["Docker","Pi hole","VPN","WIreguard"],"articleSection":["Raspberry"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hosting.foto-sjoet.nl\/?p=78#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78","url":"https:\/\/hosting.foto-sjoet.nl\/?p=78","name":"Wireguard op de Raspberry PI - Hosting | Raspberry | Home Assistant","isPartOf":{"@id":"https:\/\/hosting.foto-sjoet.nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage"},"image":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage"},"thumbnailUrl":"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png","datePublished":"2023-08-06T11:05:52+00:00","dateModified":"2023-08-08T16:29:15+00:00","breadcrumb":{"@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hosting.foto-sjoet.nl\/?p=78"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#primaryimage","url":"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png","contentUrl":"https:\/\/hosting.foto-sjoet.nl\/wp-content\/uploads\/2023\/08\/wireguard_logo_icon_167956.png","width":512,"height":256},{"@type":"BreadcrumbList","@id":"https:\/\/hosting.foto-sjoet.nl\/?p=78#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hosting.foto-sjoet.nl\/"},{"@type":"ListItem","position":2,"name":"Wireguard op de Raspberry PI"}]},{"@type":"WebSite","@id":"https:\/\/hosting.foto-sjoet.nl\/#website","url":"https:\/\/hosting.foto-sjoet.nl\/","name":"Hosting | Raspberry | Home Assistant","description":"Backup | installatie hulp |","publisher":{"@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hosting.foto-sjoet.nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/b834986d86029b34bdba968d9dea06eb","name":"Hans","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dfad6d4508122ec2e3204d3a7249ee191d3a677250ca9d691d6b7b57cc9f5e5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dfad6d4508122ec2e3204d3a7249ee191d3a677250ca9d691d6b7b57cc9f5e5f?s=96&d=mm&r=g","caption":"Hans"},"logo":{"@id":"https:\/\/hosting.foto-sjoet.nl\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/hosting.foto-sjoet.nl"],"url":"https:\/\/hosting.foto-sjoet.nl\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/posts\/78","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=78"}],"version-history":[{"count":12,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/posts\/78\/revisions"}],"predecessor-version":[{"id":214,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/posts\/78\/revisions\/214"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=\/wp\/v2\/media\/83"}],"wp:attachment":[{"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=78"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=78"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hosting.foto-sjoet.nl\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=78"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}