16 lines
650 B
PHP
16 lines
650 B
PHP
<?php
|
|
|
|
//name of your particular DashboardFE instance, give it any name.
|
|
$setting['appname'] = "Fedi Tumblr";
|
|
|
|
//url of where you are going to host your instance of DashboardFE
|
|
$setting['url'] = "http://aadils.computer/fedi";
|
|
|
|
//Short description
|
|
$setting['description'] = "<br><p>A tumblr-like frontend for interacting with the fediverse.</p>";
|
|
|
|
//Locked Instance
|
|
//If you prefer your instance of DashboardFE to be locked to a certain fediverse server (your own server, for example) and prevent it's use on another fediverse server, just uncomment the following line and put the url of the desired server
|
|
//$setting['lockedto'] = "your.url/dir";
|
|
?>
|