Supporta PHP/FastCGI?

Sì. SSLcat si collega a PHP‑FPM via FastCGI per eseguire applicazioni PHP (WordPress, Laravel, ecc.).

Avvio rapido (Pannello)

  1. Login → Siti → Nuovo
  2. Tipo: Sito PHP (FastCGI)
  3. Imposta dominio e document root (es. /var/www/app)
  4. Indirizzo PHP‑FPM: unix:/run/php/php8.2-fpm.sock o 127.0.0.1:9000
  5. Salva

Instradamento e rewrite

Esempio (YAML)

php_sites:
  - domain: "app.example.com"
    root: "/var/www/app/public"
    fpm: "unix:/run/php/php8.2-fpm.sock"   # o "127.0.0.1:9000"
    index_files: ["index.php", "index.html"]
    route_fallback_to: "index.php"
    client_max_body_bytes: 104857600
    

Risoluzione problemi