Does it support PHP/FastCGI?

Yes. SSLcat connects to PHP‑FPM via FastCGI to run PHP applications such as WordPress, Laravel, and more.

Quickstart (Admin Panel)

  1. Login → Sites → New site
  2. Type: PHP Site (FastCGI)
  3. Set domain and document root (e.g. /var/www/app)
  4. Set PHP‑FPM address: unix:/run/php/php8.2-fpm.sock or 127.0.0.1:9000
  5. Save

Routing and rewrites

Example (YAML)

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

Troubleshooting