{"id":10,"date":"2026-05-01T16:52:47","date_gmt":"2026-05-01T14:52:47","guid":{"rendered":"http:\/\/192.168.20.20\/?p=10"},"modified":"2026-05-02T14:09:00","modified_gmt":"2026-05-02T12:09:00","slug":"installer-apache2-sur-debian-rapide-propre","status":"publish","type":"post","link":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/","title":{"rendered":"Installer Apache2 sur Debian (rapide &amp; propre)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Mettre en place un serveur web <strong>Apache2<\/strong> sur Debian avec une configuration fonctionnelle.<\/h2>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Pr\u00e9requis<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Debian<\/li>\n\n\n\n<li>Acc\u00e8s root ou sudo<\/li>\n\n\n\n<li>Acc\u00e8s r\u00e9seau<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Installation<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install apache2 -y\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> D\u00e9marrage du service<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start apache2\nsudo systemctl enable apache2\n<\/code><\/pre>\n\n\n\n<p>V\u00e9rifier :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status apache2\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Test du serveur<\/h2>\n\n\n\n<p>Dans un navigateur :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;IP_DU_SERVEUR\n<\/code><\/pre>\n\n\n\n<p> Tu dois voir la page <strong>\u201cApache2 Debian Default Page\u201d<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Arborescence utile<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>\/var\/www\/html        \u2192 racine web\n\/etc\/apache2         \u2192 config Apache\n\/etc\/apache2\/sites-available\n\/etc\/apache2\/sites-enabled\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Modifier la page web<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/var\/www\/html\/index.html\n<\/code><\/pre>\n\n\n\n<p>Exemple minimal :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;h1&gt;Serveur OK&lt;\/h1&gt;\n&lt;p&gt;Apache fonctionne&lt;\/p&gt;\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Recharger Apache<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl reload apache2\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Ouvrir le firewall (si actif)<\/h2>\n\n\n\n<p>Avec UFW :<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow \"Apache\"\nsudo ufw reload\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> V\u00e9rifications<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>curl http:\/\/localhost\nss -tulnp | grep :80\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Commandes utiles<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2\nsudo systemctl stop apache2\nsudo apache2ctl configtest\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Probl\u00e8mes fr\u00e9quents<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Port 80 d\u00e9j\u00e0 utilis\u00e9<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ss -tulnp | grep :80\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Service non d\u00e9marr\u00e9<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl status apache2\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Firewall bloquant<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> Suite logique<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Installer PHP<\/li>\n\n\n\n<li>Installer MariaDB<\/li>\n\n\n\n<li>D\u00e9ployer WordPress<\/li>\n\n\n\n<li>Ajouter HTTPS (Let\u2019s Encrypt)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"> R\u00e9sultat<\/h2>\n\n\n\n<p> Apache est op\u00e9rationnel<br>Serveur web pr\u00eat \u00e0 h\u00e9berger un site<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mettre en place un serveur web Apache2 sur Debian avec une configuration fonctionnelle. Pr\u00e9requis Installation D\u00e9marrage du service V\u00e9rifier : Test du serveur Dans un navigateur : Tu dois voir la page \u201cApache2 Debian Default Page\u201d Arborescence utile Modifier la page web Exemple minimal : Recharger Apache Ouvrir le firewall (si actif) Avec UFW : [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[12,5],"tags":[3],"class_list":["post-10","post","type-post","status-publish","format-standard","hentry","category-linux","category-systeme","tag-cisco"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps<\/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:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps\" \/>\n<meta property=\"og:description\" content=\"Mettre en place un serveur web Apache2 sur Debian avec une configuration fonctionnelle. Pr\u00e9requis Installation D\u00e9marrage du service V\u00e9rifier : Test du serveur Dans un navigateur : Tu dois voir la page \u201cApache2 Debian Default Page\u201d Arborescence utile Modifier la page web Exemple minimal : Recharger Apache Ouvrir le firewall (si actif) Avec UFW : [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/\" \/>\n<meta property=\"og:site_name\" content=\"Eryann Breizh SecOps\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-01T14:52:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-02T12:09:00+00:00\" \/>\n<meta name=\"author\" content=\"wpadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"wpadmin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/\"},\"author\":{\"name\":\"wpadmin\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/#\\\/schema\\\/person\\\/d2ee98d2385cd045ed4fe1c07ca320b5\"},\"headline\":\"Installer Apache2 sur Debian (rapide &amp; propre)\",\"datePublished\":\"2026-05-01T14:52:47+00:00\",\"dateModified\":\"2026-05-02T12:09:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/\"},\"wordCount\":116,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/#organization\"},\"keywords\":[\"cisco\"],\"articleSection\":[\"Linux\",\"Syst\u00e8me\"],\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/\",\"url\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/\",\"name\":\"Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/#website\"},\"datePublished\":\"2026-05-01T14:52:47+00:00\",\"dateModified\":\"2026-05-02T12:09:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/systeme\\\/installer-apache2-sur-debian-rapide-propre\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/eryann.fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installer Apache2 sur Debian (rapide &amp; propre)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/#website\",\"url\":\"https:\\\/\\\/eryann.fr\\\/\",\"name\":\"Eryann Breizh SecOps\",\"description\":\"Fiches techniques &amp; labs en syst\u00e8mes et r\u00e9seaux poor les \u00e9tudiants en BTS CEIL ET SIO\",\"publisher\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/eryann.fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/#organization\",\"name\":\"Breizh Sec Ops\",\"url\":\"https:\\\/\\\/eryann.fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/eryann.fr\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/cropped-088112b9-fd28-4b18-b02d-4d9dded3e900-e1777846396685.png\",\"contentUrl\":\"https:\\\/\\\/eryann.fr\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/cropped-088112b9-fd28-4b18-b02d-4d9dded3e900-e1777846396685.png\",\"width\":1246,\"height\":229,\"caption\":\"Breizh Sec Ops\"},\"image\":{\"@id\":\"https:\\\/\\\/eryann.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/eryann.fr\\\/#\\\/schema\\\/person\\\/d2ee98d2385cd045ed4fe1c07ca320b5\",\"name\":\"wpadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g\",\"caption\":\"wpadmin\"},\"sameAs\":[\"https:\\\/\\\/eryann.fr\"],\"url\":\"https:\\\/\\\/eryann.fr\\\/index.php\\\/author\\\/wpadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps","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:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/","og_locale":"fr_FR","og_type":"article","og_title":"Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps","og_description":"Mettre en place un serveur web Apache2 sur Debian avec une configuration fonctionnelle. Pr\u00e9requis Installation D\u00e9marrage du service V\u00e9rifier : Test du serveur Dans un navigateur : Tu dois voir la page \u201cApache2 Debian Default Page\u201d Arborescence utile Modifier la page web Exemple minimal : Recharger Apache Ouvrir le firewall (si actif) Avec UFW : [&hellip;]","og_url":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/","og_site_name":"Eryann Breizh SecOps","article_published_time":"2026-05-01T14:52:47+00:00","article_modified_time":"2026-05-02T12:09:00+00:00","author":"wpadmin","twitter_card":"summary_large_image","twitter_misc":{"\u00c9crit par":"wpadmin","Dur\u00e9e de lecture estim\u00e9e":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/#article","isPartOf":{"@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/"},"author":{"name":"wpadmin","@id":"https:\/\/eryann.fr\/#\/schema\/person\/d2ee98d2385cd045ed4fe1c07ca320b5"},"headline":"Installer Apache2 sur Debian (rapide &amp; propre)","datePublished":"2026-05-01T14:52:47+00:00","dateModified":"2026-05-02T12:09:00+00:00","mainEntityOfPage":{"@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/"},"wordCount":116,"commentCount":0,"publisher":{"@id":"https:\/\/eryann.fr\/#organization"},"keywords":["cisco"],"articleSection":["Linux","Syst\u00e8me"],"inLanguage":"fr-FR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/","url":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/","name":"Installer Apache2 sur Debian (rapide &amp; propre) - Eryann Breizh SecOps","isPartOf":{"@id":"https:\/\/eryann.fr\/#website"},"datePublished":"2026-05-01T14:52:47+00:00","dateModified":"2026-05-02T12:09:00+00:00","breadcrumb":{"@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eryann.fr\/index.php\/systeme\/installer-apache2-sur-debian-rapide-propre\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/eryann.fr\/"},{"@type":"ListItem","position":2,"name":"Installer Apache2 sur Debian (rapide &amp; propre)"}]},{"@type":"WebSite","@id":"https:\/\/eryann.fr\/#website","url":"https:\/\/eryann.fr\/","name":"Eryann Breizh SecOps","description":"Fiches techniques &amp; labs en syst\u00e8mes et r\u00e9seaux poor les \u00e9tudiants en BTS CEIL ET SIO","publisher":{"@id":"https:\/\/eryann.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eryann.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/eryann.fr\/#organization","name":"Breizh Sec Ops","url":"https:\/\/eryann.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/eryann.fr\/#\/schema\/logo\/image\/","url":"https:\/\/eryann.fr\/wp-content\/uploads\/2026\/05\/cropped-088112b9-fd28-4b18-b02d-4d9dded3e900-e1777846396685.png","contentUrl":"https:\/\/eryann.fr\/wp-content\/uploads\/2026\/05\/cropped-088112b9-fd28-4b18-b02d-4d9dded3e900-e1777846396685.png","width":1246,"height":229,"caption":"Breizh Sec Ops"},"image":{"@id":"https:\/\/eryann.fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/eryann.fr\/#\/schema\/person\/d2ee98d2385cd045ed4fe1c07ca320b5","name":"wpadmin","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d71b4031c3d015de3ca68c137413277e548b331b07db0acf781b9379b798eb3e?s=96&d=mm&r=g","caption":"wpadmin"},"sameAs":["https:\/\/eryann.fr"],"url":"https:\/\/eryann.fr\/index.php\/author\/wpadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/posts\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":3,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/posts\/10\/revisions"}],"predecessor-version":[{"id":56,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/posts\/10\/revisions\/56"}],"wp:attachment":[{"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/media?parent=10"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/categories?post=10"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eryann.fr\/index.php\/wp-json\/wp\/v2\/tags?post=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}