@extends('admin.partial.template') @include('admin.settings.sidebar') @section('section')

Settings

@if(config('instance.enable_cc'))

Manage instance settings.

Warning: These settings will override .env variables

@csrf
{{--
--}}

The instance name used in titles, metadata and apis.

Short description of instance used on various pages and apis.

Longer description of instance used on about page.

Set a storage limit per user account.

Account limit size in KB.

{{config_cache('pixelfed.max_account_size')}} KB = {{floor(config_cache('pixelfed.max_account_size') / 1024)}} MB

Maximum file upload size in KB

{{config_cache('pixelfed.max_photo_size')}} KB = {{number_format(config_cache('pixelfed.max_photo_size') / 1024)}} MB

The maximum number of photos or videos per album

Image optimization quality from 0-100%. Set to 0 to disable image optimization.

Allowed media types.

Add rules that explain what is acceptable use.

Active Rules

    @if($rules) @foreach($rules as $rule)
  1. {{$rule}}

  2. @endforeach @endif

Add custom CSS, will be used on all pages

@else

Not enabled

Add ENABLE_CONFIG_CACHE=true in your .env file
and run php artisan config:cache

@endif @endsection @push('scripts') @endpush