mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
 | 
						|
	'announcement' => [
 | 
						|
		'enabled' => env('INSTANCE_ANNOUNCEMENT_ENABLED', false),
 | 
						|
		'message' => env('INSTANCE_ANNOUNCEMENT_MESSAGE', 'Example announcement message.<br><span class="font-weight-normal">Something else here</span>')
 | 
						|
	],
 | 
						|
 | 
						|
	'contact' => [
 | 
						|
		'enabled' => env('INSTANCE_CONTACT_FORM', false),
 | 
						|
		'max_per_day' => env('INSTANCE_CONTACT_MAX_PER_DAY', 1),
 | 
						|
	],
 | 
						|
 | 
						|
	'discover' => [
 | 
						|
		'loops' => [
 | 
						|
			'enabled' => false
 | 
						|
		],
 | 
						|
		'tags' => [
 | 
						|
			'is_public' => env('INSTANCE_PUBLIC_HASHTAGS', false)
 | 
						|
		],
 | 
						|
	],
 | 
						|
	
 | 
						|
	'email' => env('INSTANCE_CONTACT_EMAIL'),
 | 
						|
 | 
						|
	'timeline' => [
 | 
						|
		'local' => [
 | 
						|
			'is_public' => env('INSTANCE_PUBLIC_LOCAL_TIMELINE', false)
 | 
						|
		]
 | 
						|
	],
 | 
						|
 | 
						|
	'page' => [
 | 
						|
		'404' => [
 | 
						|
			'header' => env('PAGE_404_HEADER', 'Sorry, this page isn\'t available.'),
 | 
						|
			'body' => env('PAGE_404_BODY', 'The link you followed may be broken, or the page may have been removed. <a href="/">Go back to Pixelfed.</a>')
 | 
						|
		],
 | 
						|
		'503' => [
 | 
						|
			'header' => env('PAGE_503_HEADER', 'Service Unavailable'),
 | 
						|
			'body' => env('PAGE_503_BODY', 'Our service is in maintenance mode, please try again later.')
 | 
						|
		]
 | 
						|
	],
 | 
						|
	'username' => [
 | 
						|
		'remote' => [
 | 
						|
			'formats' => ['@', 'from', 'custom'],
 | 
						|
			'format' => in_array(env('USERNAME_REMOTE_FORMAT', '@'), ['@','from','custom']) ? env('USERNAME_REMOTE_FORMAT', '@') : '@',
 | 
						|
			'custom' => env('USERNAME_REMOTE_CUSTOM_TEXT', null)
 | 
						|
		]
 | 
						|
	],
 | 
						|
]; |