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.
Default URLs
Section titled “Default URLs”In the development environment, the backend services are available at the following addresses:
- Administration Panel: http://localhost:8000
- API Endpoint: http://localhost:8000/api
Path Configuration
Section titled “Path Configuration”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:
public function panel(Panel $panel): Panel{ return $panel ->default() ->id('admin') ->path('') // ... other configurations}