- Change default security to CONFIGURE_ME - Fix log on return URL handling - Update INSTALLING security model descriptions
16 lines
486 B
PHP
16 lines
486 B
PHP
<?php
|
|
include '../../start.php';
|
|
|
|
$db = Data::getConnection();
|
|
Security::verifyUser($db, redirectIfAnonymous: false);
|
|
|
|
page_head('Documentation'); ?>
|
|
<h1>Documentation Home</h1>
|
|
<article>
|
|
<p><a href=./the-cli>About the CLI</a> provides orientation on Feed Reader Central’s command line interface
|
|
<p><a href=./security-modes>Configuring Security Modes</a> describes the three security modes and how to manage each
|
|
of them
|
|
</article><?php
|
|
page_foot();
|
|
$db->close();
|