summaryrefslogtreecommitdiffstats
path: root/public/opml/index.php
blob: 260057dbd6ec7bc57593867b1395f778b0374156 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
require_once '../../app/app.php';

if (!file_exists(config_path('people.opml'))) {
    header('HTTP/1.1 404 Not Found');
    exit;
}

header('Content-Type: text/xml; charset=utf-8');
readfile(config_path('people.opml'));