Skip to content
  • Kirby CMS Plugins
  • Discover
  • Search
  • Developers
  • New plugins
  • Recently updated
  • Most starred
  • Topics
  • Types
  • Free Plugins
  • Paid Plugins
  • Kirby 4
  • Kirby 3

  • Submit a plugin
  • getkirby.com
  • AI
  • Analytics
  • Assets
  • Authentication
  • Caching
  • Cli
  • Content Creation
  • CSS
  • Databases
  • Dates
  • Debugging
  • DX
  • E-Commerce
  • Feeds
  • Forms
  • Headless
  • Icons
  • Internationalisation
  • Jamstack
  • Logging
  • Media
  • Panel
  • Performance
  • Privacy
  • Routing
  • Search
  • Security
  • SEO
  • Social Media
  • Structured data
  • Templating
  • Text
  • Typography
  • Versioning
  • Videos
  • WYSIWYG
  • Configuration

    • \Beebmx\KirbyEnv::load('main/path');
      
      return [
          'debug'  => env('KIRBY_DEBUG', false),
          'secret' => env('SECRET_KEY'),
          'public' => env('PUBLIC_KEY'),
      ];
      Fernando Gutiérrez Fernando Gutiérrez

      Env

      Store project credentials and variables in a .env file and access them in Kirby

    • 
      return [
          'bnomei.securityheaders.headers' => [
              'X-Frame-Options'        => 'SAMEORIGIN',
              'X-XSS-Protection'       => '1; mode=block',
              'X-Content-Type-Options' => 'nosniff',
              ...
          ]
      ];
      Bruno Meilick Bruno Meilick

      Content Security Policy

      Simplify the content security policy headers setup for your website

    • env('APP_DEBUG');
      Bruno Meilick Bruno Meilick

      DotEnv

      Store project credentials and environment variables in a .env file and access them in Kirby