You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
364 B
PHTML

8 years ago
<?php
namespace Eater\Glim\Handler;
8 years ago
class CA extends Main
8 years ago
{
function handle()
{
8 years ago
return $this->getResponse()
8 years ago
->withHeader('Content-Type', 'plain/text')
->withHeader('Content-Disposition', 'attachment; filename="ca.crt"')
->write(file_get_contents($this->getCore()->getBaseDir() . '/storage/ca/ca.crt'));
}
}