- Installed p7h/nas-file-manager package via private VCS repo - Published config/nas-file-manager.php with super_admin middleware restriction - Added NAS env vars to .env.example - Created admin/nas-storage page with connection info panel and file browser widget - Added NAS Storage link to admin sidebar (super_admin only) - Added SuperAdminController@nasStorage method and admin.nas-storage route - Includes all accumulated branch changes: profile wall, 2FA, audit logs, settings panel, country/phone/timezone components, posts, slideshow, playlist shares, video downloads/shares, comment likes, notifications, social links, and more Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
37 lines
1021 B
PHP
Executable File
37 lines
1021 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\URL;
|
|
use Illuminate\Support\Facades\Request;
|
|
use Illuminate\Pagination\Paginator;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
public function boot(): void
|
|
{
|
|
// Trust Cloudflare proxies
|
|
Request::setTrustedProxies(
|
|
['*'],
|
|
\Illuminate\Http\Request::HEADER_X_FORWARDED_FOR |
|
|
\Illuminate\Http\Request::HEADER_X_FORWARDED_HOST |
|
|
\Illuminate\Http\Request::HEADER_X_FORWARDED_PORT |
|
|
\Illuminate\Http\Request::HEADER_X_FORWARDED_PROTO |
|
|
\Illuminate\Http\Request::HEADER_X_FORWARDED_AWS_ELB
|
|
);
|
|
|
|
// Force HTTPS
|
|
URL::forceScheme('https');
|
|
|
|
// Universal pagination view — used everywhere by default
|
|
Paginator::defaultView('partials.pagination');
|
|
Paginator::defaultSimpleView('partials.pagination');
|
|
}
|
|
}
|