@extends('installer.layout') @section('content')

Finalize Installation

Almost done! This final step will optimize your application for production use.

What will happen:

  • Configuration caching for improved performance
  • Route caching for faster request handling
  • View caching for quicker page loads
  • Event caching for optimized event handling
  • Creation of installation lock file
  • Final permission adjustments

Post-Installation Tasks:

  • Configure your web server (NGINX/Apache) to point to the /public directory
  • Set up a cron job for Laravel scheduler: * * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1
  • Configure queue workers if using database/redis queues
  • Set up regular backups for your database and files
  • Review security settings and HTTPS configuration
@csrf
Back
@endsection