File manager - Edit - /var/www/html/portalHomolog/config/filesystems.php
Back
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. The "local" disk, as well as a variety of cloud | based disks are available to your application. Just store away! | */ 'default' => env('FILESYSTEM_DISK', 'local'), /* |-------------------------------------------------------------------------- | Filesystem Disks |-------------------------------------------------------------------------- | | Here you may configure as many filesystem "disks" as you wish, and you | may even configure multiple disks of the same driver. Defaults have | been set up for each driver as an example of the required values. | | Supported Drivers: "local", "ftp", "sftp", "s3" | */ 'disks' => [ 'secretarias' => [ 'driver' => 'local', 'root' => storage_path('app/public/secretarias'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'contas' => [ 'driver' => 'local', 'root' => storage_path('app/public/contas'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'chamados' => [ 'driver' => 'local', 'root' => storage_path('app/public/chamados'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'unidades' => [ 'driver' => 'local', 'root' => storage_path('app/public/unidades'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'escolas' => [ 'driver' => 'local', 'root' => storage_path('app/public/escolas'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'centros' => [ 'driver' => 'local', 'root' => storage_path('app/public/centros'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'comprovantes' => [ 'driver' => 'local', 'root' => storage_path('app/public/comprovantes'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'conselhos' => [ 'driver' => 'local', 'root' => storage_path('app/public/conselhos'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'noticias' => [ 'driver' => 'local', 'root' => storage_path('app/public/noticias'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'boletins' => [ 'driver' => 'local', 'root' => storage_path('app/public/boletins'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'atas' => [ 'driver' => 'local', 'root' => storage_path('app/public/atas'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'banners' => [ 'driver' => 'local', 'root' => storage_path('app/public/banners'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'repositorios' => [ 'driver' => 'local', 'root' => storage_path('app/public/repositorios'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'arquivos' => [ 'driver' => 'local', 'root' => storage_path('app/public/arquivos'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'arte_sacra' => [ 'driver' => 'local', 'root' => storage_path('app/public/arte_sacra'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'parques' => [ 'driver' => 'local', 'root' => storage_path('app/public/parques'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'documentos' => [ 'driver' => 'local', 'root' => storage_path('app/public/documentos'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'demandas' => [ 'driver' => 'local', 'root' => storage_path('app/public/demandas'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), 'throw' => false, ], 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', 'throw' => false, ], 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, ], ], 'max_size' => 102400, // 100MB em KB /* |-------------------------------------------------------------------------- | Symbolic Links |-------------------------------------------------------------------------- | | Here you may configure the symbolic links that will be created when the | `storage:link` Artisan command is executed. The array keys should be | the locations of the links and the values should be their targets. | */ 'links' => [ public_path('storage') => storage_path('app/public'), public_path('pmar/assets/img/secretarias') => storage_path('app/public/secretarias'), public_path('pmar/assets/img/contas') => storage_path('app/public/contas'), public_path('pmar/assets/img/chamados') => storage_path('app/public/chamados'), public_path('pmar/assets/img/centros') => storage_path('app/public/centros'), public_path('pmar/assets/img/escolas') => storage_path('app/public/escolas'), public_path('pmar/assets/img/unidades') => storage_path('app/public/unidades'), public_path('pmar/assets/img/comprovantes') => storage_path('app/public/comprovantes'), public_path('pmar/assets/img/noticias') => storage_path('app/public/noticias'), public_path('pmar/assets/img/banners') => storage_path('app/public/banners'), public_path('pmar/assets/img/conselhos') => storage_path('app/public/conselhos'), public_path('pmar/assets/files/repositorios') => storage_path('app/public/repositorios'), public_path('pmar/assets/files/boletins') => storage_path('app/public/boletins'), public_path('pmar/assets/files/atas') => storage_path('app/public/atas'), public_path('pmar/assets/img/arquivos') => storage_path('app/public/arquivos'), public_path('pmar/assets/img/arte_sacra') => storage_path('app/public/arte_sacra'), public_path('pmar/assets/img/parques') => storage_path('app/public/parques'), public_path('pmar/assets/img/documentos') => storage_path('app/public/documentos'), public_path('pmar/assets/files/projetos-programas') => storage_path('app/public/projetos-programas'), public_path('pmar/assets/img/themes') => storage_path('app/public/themes'), public_path('pmar/assets/img/editais-ptmar-imagens') => storage_path('app/public/editais-ptmar-imagens'), public_path('pmar/assets/files/editais-ptmar-documentos') => storage_path('app/public/editais-ptmar-documentos'), public_path('pmar/assets/files/decretos-leis-ptmar') => storage_path('app/public/decretos-leis-ptmar'), public_path('pmar/assets/img/parque-tecnologico-areas') => storage_path('app/public/parque-tecnologico-areas'), public_path('pmar/assets/img/startups-ptmar-logos') => storage_path('app/public/startups-ptmar-logos'), public_path('pmar/assets/img/startups-ptmar-backgrounds') => storage_path('app/public/startups-ptmar-backgrounds'), public_path('pmar/assets/img/licitacoes_procedimentos') => storage_path('app/public/licitacoes_procedimentos'), public_path('pmar/assets/files/contratos') => storage_path('app/public/contratos'), public_path('downloads/legislacoes-pdf') => storage_path('app/public/legislacoes-pdf'), ], ];
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings