1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 08:14:10 +00:00
pixelfed/config/pixelfed.php

20 lines
315 B
PHP
Raw Normal View History

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