Basic Configuration
After installation, you'll find the configuration file at config/curtain.php
. Here are the essential configurations you should review:
return [
// Set your default template
'default_template' => 'default',
// Configure allowed IPs during maintenance
'allowed_ips' => [
'127.0.0.1',
// Add more IPs
],
// Configure paths that should remain accessible
'excluded_paths' => [
'_debugbar/*',
'horizon/*',
// Add your paths
],
];
Last updated