<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Chiffrement on Les ordinateurs, les autres et moi</title>
    <link>https://ordinatous.github.io/blogdown/categories/chiffrement/</link>
    <description>Recent content in Chiffrement on Les ordinateurs, les autres et moi</description>
    <generator>Hugo</generator>
    <language>fr-FR</language>
    <lastBuildDate>Thu, 13 Mar 2025 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://ordinatous.github.io/blogdown/categories/chiffrement/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Mise en place du registry local</title>
      <link>https://ordinatous.github.io/blogdown/2025/03/13/mise-en-place-du-registry-local/</link>
      <pubDate>Thu, 13 Mar 2025 00:00:00 +0000</pubDate>
      <guid>https://ordinatous.github.io/blogdown/2025/03/13/mise-en-place-du-registry-local/</guid>
      <description>&lt;h2 id=&#34;préparatation-du-registry&#34;&gt;Préparatation du registry&lt;/h2&gt;&#xA;&lt;h3 id=&#34;création-des-répertoires-de-travail&#34;&gt;Création des répertoires de travail&lt;/h3&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;mkdir -p registry/&lt;span style=&#34;color:#f92672&#34;&gt;{&lt;/span&gt;data_registry,certs&lt;span style=&#34;color:#f92672&#34;&gt;}&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;docker-compose&#34;&gt;Docker-compose&lt;/h3&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yml&#34; data-lang=&#34;yml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;services&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#f92672&#34;&gt;registry&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;image&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;registry:latest&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;container_name&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;registry&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;hostname&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;registry.ordinatous.local&amp;#39;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;volumes&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      - &lt;span style=&#34;color:#ae81ff&#34;&gt;/home/ordinatous/registry/data_registry:/var/lib/registry&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      - &lt;span style=&#34;color:#ae81ff&#34;&gt;/home/ordinatous/registry/certs:/certs&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;environment&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      - &lt;span style=&#34;color:#ae81ff&#34;&gt;REGISTRY_HTTP_TLS_CERTIFICATE=/certs/registry.ordinatous.local+3.pem&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      - &lt;span style=&#34;color:#ae81ff&#34;&gt;REGISTRY_HTTP_TLS_KEY=/certs/registry.ordinatous.local+3-key.pem&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;ports&lt;/span&gt;:&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;      - &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;5000:5000&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;restart&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;unless-stopped&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;mise-en-place-de-lautorité-de-certification&#34;&gt;Mise en place de l&amp;rsquo;autorité de certification&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/FiloSottile/mkcert&#34;&gt;Dépot du projet&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ce n&amp;rsquo;est pas super bien expliqué, je pense que j&amp;rsquo;aurais du utiliser &lt;strong&gt;go&lt;/strong&gt; pour&#xA;le lancer.&lt;/p&gt;&#xA;&lt;p&gt;Sur le site d&amp;rsquo;un French DevOp, ce n&amp;rsquo;était pas claire non plus, sa commande était&#xA;tronquée, j&amp;rsquo;ai tourné un peu en rond..&lt;/p&gt;</description>
    </item>
    <item>
      <title>Tchap</title>
      <link>https://ordinatous.github.io/blogdown/2022/04/07/tchap/</link>
      <pubDate>Thu, 07 Apr 2022 00:00:00 +0000</pubDate>
      <guid>https://ordinatous.github.io/blogdown/2022/04/07/tchap/</guid>
      <description>&lt;h1 id=&#34;petit-retex&#34;&gt;Petit retex&lt;/h1&gt;&#xA;&lt;p&gt;Nous tentons d&amp;rsquo;abandonner la messagerie &amp;ldquo;sécurisée Russe , et hébergée aux Emirats&#xA;ou je ne sais oû &amp;quot; aka telegram au profit  de &lt;strong&gt;Tchap&lt;/strong&gt; .&lt;/p&gt;&#xA;&lt;p&gt;Tchap est une application web , exploitant le protocole Matrix , Tchap est un fork&#xA;du client élément, et on peut se connecter au serveurs de Tchap avec élément .&lt;/p&gt;&#xA;&lt;p&gt;Tchap est exclusivement réservé aux agents de la fonction public, ainsi que quelques&#xA;externes .&lt;/p&gt;&#xA;&lt;p&gt;Pour y avoir accès, un membre de l&amp;rsquo;organisation y est invité , et il est de fait&#xA;admin de l&amp;rsquo;application pour l&amp;rsquo;organisation , et a son tour invite les autres membres.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
