<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
<!-- Définition des éléments graphiques -->
<defs>
<!-- Définition d'un style pour les textes -->
<style>
.text { font-family: Arial, sans-serif; font-size: 14px; fill: #333; }
.title { font-weight: bold; font-size: 18px; }
.tool { fill: #0077cc; }
.component { fill: #00cc66; }
.service { fill: #ffcc00; }
</style>
<!-- Définition d'un filtre pour les ombres -->
<filter id="drop-shadow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
<feOffset in="blur" dx="3" dy="3" result="offsetBlur"/>
<feMerge>
<feMergeNode in="offsetBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Titre de l'architecture -->
<text x="10" y="30" class="text title">Architecture de la Solution</text>
<!-- Définition des éléments -->
<!-- Moodle -->
<rect x="50" y="70" width="100" height="50" class="component"/>
<text x="60" y="100" class="text">Moodle</text>
<!-- JupyterHub -->
<rect x="200" y="70" width="100" height="50" class="component"/>
<text x="210" y="100" class="text">JupyterHub</text>
<!-- VPL -->
<rect x="350" y="70" width="100" height="50" class="component"/>
<text x="370" y="100" class="text">VPL</text>
<!-- Big Blue Button -->
<rect x="500" y="70" width="100" height="50" class="component"/>
<text x="510" y="100" class="text">Big Blue Button</text>
<!-- LDAP Server -->
<rect x="650" y="70" width="100" height="50" class="component"/>
<text x="660" y="100" class="text">LDAP Server</text>
<!-- Autres services -->
<text x="50" y="160" class="text title">Services Complémentaires</text>
<!-- OrangeHRM -->
<rect x="50" y="200" width="100" height="50" class="service"/>
<text x="60" y="230" class="text">OrangeHRM</text>
<!-- RocketChat -->
<rect x="200" y="200" width="100" height="50" class="service"/>
<text x="210" y="230" class="text">RocketChat</text>
<!-- OpenProject -->
<rect x="350" y="200" width="100" height="50" class="service"/>
<text x="360" y="230" class="text">OpenProject</text>
<!-- IRedMail -->
<rect x="500" y="200" width="100" height="50" class="service"/>
<text x="510" y="230" class="text">IRedMail</text>
<!-- RoundCube -->
<rect x="650" y="200" width="100" height="50" class="service"/>
<text x="660" y="230" class="text">RoundCube</text>
<!-- Connexions entre les éléments -->
<!-- Lignes -->
<line x1="150" y1="95" x2="200" y2="95" stroke="black" stroke-width="2"/>
<line x1="300" y1="95" x2="350" y2="95" stroke="black" stroke-width="2"/>
<line x1="450" y1="95" x2="500" y2="95" stroke="black" stroke-width="2"/>
<line x1="600" y1="95" x2="650" y2="95" stroke="black" stroke-width="2"/>
<!-- Flèches -->
<polygon points="200,90 210,95 200,100" fill="black"/>
<polygon points="350,90 360,95 350,100" fill="black"/>
<polygon points="500,90 510,95 500,100" fill="black"/>
<polygon points="650,90 660,95 650,100" fill="black"/>
</svg>
-
g