fedi-tumblr/settings.php

16 lines
650 B
PHP
Raw Normal View History

2020-04-01 00:46:27 +00:00
<?php
//name of your particular DashboardFE instance, give it any name.
2022-01-12 09:48:03 +00:00
$setting['appname'] = "Fedi Tumblr";
2020-04-01 00:46:27 +00:00
2021-03-31 21:17:50 +00:00
//url of where you are going to host your instance of DashboardFE
2022-01-12 09:46:12 +00:00
$setting['url'] = "http://aadils.computer/fedi";
2020-04-01 00:46:27 +00:00
//Short description
2022-01-13 04:49:40 +00:00
$setting['description'] = "<br><p>A tumblr-like frontend for interacting with the fediverse.</p>";
2021-03-30 20:59:35 +00:00
//Locked Instance
2021-09-08 00:07:04 +00:00
//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
2021-03-30 20:59:35 +00:00
//$setting['lockedto'] = "your.url/dir";
2020-04-01 00:46:27 +00:00
?>