1
0
Fork 0
forked from mirror/pixelfed
pixelfed/config/pixelfed.php

20 lines
315 B
PHP
Raw Normal View History

2018-05-20 15:47:39 -06:00
<?php
return [
2018-05-22 18:45:13 -06:00
2018-05-20 15:47:39 -06:00
'version' => '0.1.0',
2018-05-22 18:45:13 -06:00
2018-05-20 15:47:39 -06:00
'nodeinfo' => [
'url' => config('app.url') . '/' . 'api/nodeinfo/2.0.json'
],
2018-05-22 18:45:13 -06:00
2018-05-22 18:03:54 -06:00
'memory_limit' => '1024M',
2018-05-22 18:45:13 -06:00
'restricted_names' => [
'reserved_routes' => true,
'use_blacklist' => false
],
'open_registration' => env('OPEN_REGISTRATION', true),
2018-05-20 15:47:39 -06:00
];