Skip to content

Admin Panel Access

In Pyxis CMS, the administration panel is fully isolated from the frontend layer. This separation ensures better security and allows the admin panel to scale independently from the presentation layer.

In the development environment, the backend services are available at the following addresses:

The administration panel is configured to serve from the root path (/) of its designated domain or subdomain. This setup is defined in the AdminPanelProvider.php file:

app/Providers/Filament/AdminPanelProvider.php
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('admin')
->path('')
// ... other configurations
}