- text-yellow-500 on white bg had ratio ~1.9 (need 4.5), now text-yellow-700 - text-indigo-600 links on white bg had ratio ~3.8, now text-indigo-800 with permanent underline for link visibility (WCAG 1.4.1) - Cookie banner link also updated Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
81 lines
3.8 KiB
Twig
81 lines
3.8 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Hebergement - E-Ticket{% endblock %}
|
|
{% block description %}Informations sur l'hebergement de la plateforme E-Ticket{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="page-container">
|
|
<h1 class="text-3xl font-black uppercase tracking-tighter italic heading-page mb-8">Hebergement</h1>
|
|
|
|
<div class="flex flex-col gap-8">
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">1. Hebergeur principal</h2>
|
|
<p>Le site <strong>ticket.e-cosplay.fr</strong> est heberge par :</p>
|
|
<ul class="list-disc pl-6 mt-2">
|
|
<li><strong>Google Cloud Platform (GCP)</strong></li>
|
|
<li>Google Ireland Limited</li>
|
|
<li>Gordon House, Barrow Street, Dublin 4, Irlande</li>
|
|
<li>Region : europe-west1 (Belgique)</li>
|
|
<li>Site : cloud.google.com</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">2. CDN et securite</h2>
|
|
<ul class="list-disc pl-6">
|
|
<li><strong>Cloudflare, Inc.</strong></li>
|
|
<li>101 Townsend St, San Francisco, CA 94107, Etats-Unis</li>
|
|
<li>Services : CDN, protection DDoS, WAF, gestion DNS, certificats TLS</li>
|
|
<li>Site : cloudflare.com</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">3. Stockage des fichiers</h2>
|
|
<ul class="list-disc pl-6">
|
|
<li><strong>Stockage objet compatible S3</strong></li>
|
|
<li>Heberge sur infrastructure ESY-WEB (s3.esy-web.dev)</li>
|
|
<li>Localisation : Europe</li>
|
|
<li>Utilisation : stockage des images, documents et fichiers uploades</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">4. Service d'envoi d'emails</h2>
|
|
<ul class="list-disc pl-6">
|
|
<li><strong>Amazon Simple Email Service (SES)</strong></li>
|
|
<li>Amazon Web Services EMEA SARL</li>
|
|
<li>38 Avenue John F. Kennedy, L-1855 Luxembourg</li>
|
|
<li>Region : eu-west-3 (Paris)</li>
|
|
<li>Utilisation : envoi des emails transactionnels (billets, confirmations, notifications)</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">5. Service de paiement</h2>
|
|
<ul class="list-disc pl-6">
|
|
<li><strong>Stripe Payments Europe, Ltd.</strong></li>
|
|
<li>1 Grand Canal Street Lower, Grand Canal Dock, Dublin 2, Irlande</li>
|
|
<li>Utilisation : traitement des paiements en ligne, gestion des remboursements</li>
|
|
<li>Certification : PCI DSS Level 1</li>
|
|
<li>Site : stripe.com</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">6. Localisation des donnees</h2>
|
|
<p>L'ensemble des donnees de la Plateforme (base de donnees, fichiers, sauvegardes) est heberge dans l'<strong>Union Europeenne</strong>.</p>
|
|
<p class="mt-2">Les sous-traitants americains (Cloudflare, Stripe) operent sous le cadre du <strong>Data Privacy Framework (DPF)</strong> et/ou des <strong>Clauses Contractuelles Types (CCT)</strong> pour les transferts de donnees hors UE.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 class="text-xl font-black uppercase mb-2">7. Contact</h2>
|
|
<p>Pour toute question relative a l'hebergement : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></p>
|
|
</section>
|
|
|
|
<p class="text-sm opacity-70 italic">Derniere mise a jour : {{ "now"|date("d/m/Y") }}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|