Files
e-ticket/templates/legal/hosting.html.twig
Serreau Jovann af8bbc24dc Add homepage, tarifs, legal pages, navbar, footer and full test coverage
- Homepage: hero, how it works (buyer/organizer), features, CTA
- Tarifs: 3 plans (Gratuit, Basique 10€, Sur-mesure), JSON-LD Product
- Legal pages: mentions legales, CGU (tabs buyer/organizer), CGV, RGPD, cookies, hosting
- Navbar: neubrutalism style, logo liip, mobile menu, SEO attributes
- Footer: contact, description, legal links, tarifs
- Sitemap: add /tarifs and /sitemap-orgas-{page}.xml
- Liip Imagine: remove S3, webp format on all filters
- Tests: full coverage for all controllers, services, repositories
- Fix CSP: replace inline onclick with data-tab JS

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 00:01:58 +01:00

81 lines
4.2 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 style="max-width:50rem;margin:0 auto;padding:3rem 1rem;">
<h1 class="text-3xl font-black uppercase tracking-tighter italic" style="border-bottom:4px solid #111827;display:inline-block;margin-bottom:2rem;">Hebergement</h1>
<div style="display:flex;flex-direction:column;gap:2rem;">
<section>
<h2 class="text-xl font-black uppercase" style="margin-bottom:0.5rem;">1. Hebergeur principal</h2>
<p>Le site <strong>ticket.e-cosplay.fr</strong> est heberge par :</p>
<ul style="list-style:disc;padding-left:1.5rem;margin-top:0.5rem;">
<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" style="margin-bottom:0.5rem;">2. CDN et securite</h2>
<ul style="list-style:disc;padding-left:1.5rem;">
<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" style="margin-bottom:0.5rem;">3. Stockage des fichiers</h2>
<ul style="list-style:disc;padding-left:1.5rem;">
<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" style="margin-bottom:0.5rem;">4. Service d'envoi d'emails</h2>
<ul style="list-style:disc;padding-left:1.5rem;">
<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" style="margin-bottom:0.5rem;">5. Service de paiement</h2>
<ul style="list-style:disc;padding-left:1.5rem;">
<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" style="margin-bottom:0.5rem;">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 style="margin-top:0.5rem;">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" style="margin-bottom:0.5rem;">7. Contact</h2>
<p>Pour toute question relative a l'hebergement : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-600 hover:underline">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 %}