├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── laravel.yml ├── .gitignore ├── .styleci.yml ├── LICENSE ├── README.md ├── app ├── Actions │ └── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php ├── Console │ ├── Commands │ │ ├── ActiveSetupCount.php │ │ ├── CipiUpdate.php │ │ ├── LogRotate.php │ │ ├── ServerSetupCheck.php │ │ └── Stats │ │ │ ├── GetCpu.php │ │ │ ├── GetDisk.php │ │ │ ├── GetLoad.php │ │ │ └── GetMem.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── FileManagerController.php │ │ │ └── LogManagerController.php │ │ ├── AuthController.php │ │ ├── ConfController.php │ │ ├── Controller.php │ │ ├── DatabaseController.php │ │ ├── DnsRecordsController.php │ │ ├── FileManagerController.php │ │ ├── LogManagerController.php │ │ ├── NodejsController.php │ │ ├── ServerController.php │ │ ├── SettingsController.php │ │ ├── ShellController.php │ │ ├── Site │ │ │ └── WordPressController.php │ │ └── SiteController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CipiAuth.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── CronSSH.php │ ├── DeleteAliasSSH.php │ ├── DeleteSiteSSH.php │ ├── EditSiteBasepathSSH.php │ ├── EditSiteDeploySSH.php │ ├── EditSiteDomainSSH.php │ ├── EditSitePhpSSH.php │ ├── EditSiteSupervisorSSH.php │ ├── NewAliasSSH.php │ ├── NewSiteSSH.php │ ├── NodejsSetupSSH.php │ ├── NodejsStopSSH.php │ ├── PanelDomainAddSSH.php │ ├── PanelDomainRemoveSSH.php │ ├── PanelDomainSslSSH.php │ ├── PhpCliSSH.php │ ├── RootResetSSH.php │ ├── SiteDbPwdSSH.php │ ├── SiteUserPwdSSH.php │ └── SslSiteSSH.php ├── Livewire │ ├── Dashboard │ │ └── TopSites.php │ ├── ManageService.php │ ├── Server │ │ ├── Fail2ban │ │ │ └── Iptables.php │ │ ├── NewServer.php │ │ ├── PackagesInstalled.php │ │ └── ServerTable.php │ ├── Settings │ │ ├── ApiKey.php │ │ └── PanelDomain.php │ ├── Site │ │ ├── NewSite.php │ │ └── SiteTable.php │ └── Stats │ │ ├── Cpu.php │ │ ├── Disk.php │ │ ├── Load.php │ │ └── Mem.php ├── Models │ ├── Alias.php │ ├── Auth.php │ ├── Database.php │ ├── DatabaseUser.php │ ├── DatabaseUserLink.php │ ├── DnsRecord.php │ ├── Mysqluser.php │ ├── Server.php │ ├── Site.php │ ├── Stats │ │ ├── Cpu.php │ │ ├── Disk.php │ │ ├── Load.php │ │ └── Mem.php │ ├── User.php │ ├── Userdatabase.php │ └── Wordpress.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── DatabaseService.php │ ├── DnsService.php │ ├── FileManager.php │ └── WordPressService.php └── View │ └── Components │ ├── Button.php │ ├── Card.php │ ├── Input.php │ └── Tabs.php ├── artisan ├── bin └── spikster ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cipi.php ├── cors.php ├── database.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── jetstream.php ├── l5-swagger.php ├── lfm.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_05_01_000000_create_auths_table.php │ ├── 2019_05_02_000000_create_servers_table.php │ ├── 2019_05_03_000000_create_sites_table.php │ ├── 2019_05_04_000000_create_aliases_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php.php │ ├── 2021_03_15_201927_create_jobs_table.php │ ├── 2023_05_08_042509_create_database_users_table.php │ ├── 2023_05_08_042658_create_databases_table.php │ ├── 2023_08_21_123810_create_sessions_table.php │ ├── 2023_09_24_102021_create_cpus_table.php │ ├── 2023_09_24_102029_create_mems_table.php │ ├── 2023_09_24_102113_create_disks_table.php │ ├── 2023_09_24_102120_create_loads_table.php │ ├── 2023_09_29_220814_update_servers_table.php │ ├── 2024_01_25_212533_create_database_user_links_table.php │ ├── 2024_01_27_195133_create_wordpresses_table.php │ └── 2024_02_13_210838_create_dns_records_table.php └── seeders │ └── DatabaseSeeder.php ├── docker.sh ├── dockerfile ├── go.sh ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .DS_Store ├── .htaccess ├── assets │ ├── css │ │ └── app.css │ ├── img │ │ ├── error.png │ │ └── notfound.png │ └── js │ │ └── app.js ├── css │ └── app.css ├── favicon.png ├── index.php ├── js │ ├── app.js │ └── app.js.LICENSE.txt ├── livewire │ ├── livewire.esm.js │ ├── livewire.js │ ├── livewire.min.js │ └── manifest.json ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── spikster.php │ │ └── validation.php └── views │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── action-message.blade.php │ ├── action-section.blade.php │ ├── application-logo.blade.php │ ├── application-mark.blade.php │ ├── authentication-card-logo.blade.php │ ├── authentication-card.blade.php │ ├── banner.blade.php │ ├── button.blade.php │ ├── card.blade.php │ ├── checkbox.blade.php │ ├── confirmation-modal.blade.php │ ├── confirms-password.blade.php │ ├── danger-button.blade.php │ ├── dialog-modal.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── form-section.blade.php │ ├── input-error.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── section-border.blade.php │ ├── section-title.blade.php │ ├── switchable-team.blade.php │ ├── tabs.blade.php │ ├── validation-errors.blade.php │ └── welcome.blade.php │ ├── dashboard.blade.php │ ├── design.blade.php │ ├── errors │ ├── 403.blade.php │ ├── 404.blade.php │ └── 500.blade.php │ ├── file_manager │ ├── index.blade.php │ └── show.blade.php │ ├── jetstream.php │ ├── layouts │ ├── app.blade.php │ ├── components │ │ ├── mobile-sidebar.blade.php │ │ └── sidebar.blade.php │ ├── guest.blade.php │ ├── old.blade.php │ └── settings.blade.php │ ├── livewire │ ├── dashboard │ │ └── top-sites.blade.php │ ├── server │ │ ├── fail2ban │ │ │ └── iptables.blade.php │ │ ├── new-server.blade.php │ │ ├── packages-installed.blade.php │ │ └── server-table.blade.php │ ├── settings │ │ ├── api-key.blade.php │ │ └── panel-domain.blade.php │ ├── site │ │ ├── new-site.blade.php │ │ └── site-table.blade.php │ └── stats │ │ ├── cpu.blade.php │ │ ├── disk.blade.php │ │ ├── load.blade.php │ │ └── mem.blade.php │ ├── login.blade.php │ ├── pdf.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── server │ ├── edit.blade.php │ ├── fail2ban.blade.php │ ├── list.blade.php │ ├── logs │ │ ├── index.blade.php │ │ └── show.blade.php │ └── packages-installed.blade.php │ ├── settings │ ├── settings.blade.php │ └── users.blade.php │ ├── site │ ├── database │ │ └── index.blade.php │ ├── dns │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── new.blade.php │ ├── edit.blade.php │ ├── list.blade.php │ └── wordpress │ │ └── index.blade.php │ ├── template.blade.php │ ├── vendor │ ├── l5-swagger │ │ ├── .gitkeep │ │ ├── index.blade.php │ │ └── jetstream │ │ │ └── mail │ │ │ └── team-invitation.blade.php │ └── livewire │ │ ├── bootstrap.blade.php │ │ ├── simple-bootstrap.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── conf.php ├── console.php ├── jetstream.php ├── server.php ├── settings.php ├── sh.php ├── site.php └── web.php ├── spikster └── cli │ └── server │ ├── list-services.sh │ ├── manage-cronjobs.sh │ ├── manage-php-versions.sh │ └── manage-services.sh ├── storage ├── api-docs │ └── swagger.json ├── app │ ├── .gitignore │ ├── cipi │ │ ├── cron.conf │ │ ├── delsite.sh │ │ ├── deploy.sh │ │ ├── host.conf │ │ ├── newsite.sh │ │ ├── nginx.conf │ │ ├── package-manager │ │ │ └── php │ │ │ │ ├── 7.4 │ │ │ │ └── install.sh │ │ │ │ ├── 8.0 │ │ │ │ └── install.sh │ │ │ │ ├── 8.1 │ │ │ │ └── install.sh │ │ │ │ ├── 8.2 │ │ │ │ └── install.sh │ │ │ │ └── 8.3 │ │ │ │ └── install.sh │ │ ├── panel.conf │ │ ├── patch202112091.sh │ │ ├── patch202112101.sh │ │ ├── patch202112181.sh │ │ ├── patch20230821.sh │ │ ├── php.conf │ │ ├── rootreset.sh │ │ ├── setup.sh │ │ ├── sitepass.sh │ │ ├── supervisor.conf │ │ └── version.md │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── server_logs ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── CipiTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── utility ├── cipi-update │ └── run.sh ├── design │ └── banner.png └── zero-page │ └── index.php └── webpack.mix.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Console/Commands/ActiveSetupCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/ActiveSetupCount.php -------------------------------------------------------------------------------- /app/Console/Commands/CipiUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/CipiUpdate.php -------------------------------------------------------------------------------- /app/Console/Commands/LogRotate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/LogRotate.php -------------------------------------------------------------------------------- /app/Console/Commands/ServerSetupCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/ServerSetupCheck.php -------------------------------------------------------------------------------- /app/Console/Commands/Stats/GetCpu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/Stats/GetCpu.php -------------------------------------------------------------------------------- /app/Console/Commands/Stats/GetDisk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/Stats/GetDisk.php -------------------------------------------------------------------------------- /app/Console/Commands/Stats/GetLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/Stats/GetLoad.php -------------------------------------------------------------------------------- /app/Console/Commands/Stats/GetMem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Commands/Stats/GetMem.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/FileManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/Api/FileManagerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/LogManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/Api/LogManagerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ConfController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/ConfController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DatabaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/DatabaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DnsRecordsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/DnsRecordsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FileManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/FileManagerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LogManagerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/LogManagerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NodejsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/NodejsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ServerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/ServerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/SettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ShellController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/ShellController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Site/WordPressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/Site/WordPressController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Controllers/SiteController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CipiAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/CipiAuth.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/CronSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/CronSSH.php -------------------------------------------------------------------------------- /app/Jobs/DeleteAliasSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/DeleteAliasSSH.php -------------------------------------------------------------------------------- /app/Jobs/DeleteSiteSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/DeleteSiteSSH.php -------------------------------------------------------------------------------- /app/Jobs/EditSiteBasepathSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/EditSiteBasepathSSH.php -------------------------------------------------------------------------------- /app/Jobs/EditSiteDeploySSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/EditSiteDeploySSH.php -------------------------------------------------------------------------------- /app/Jobs/EditSiteDomainSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/EditSiteDomainSSH.php -------------------------------------------------------------------------------- /app/Jobs/EditSitePhpSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/EditSitePhpSSH.php -------------------------------------------------------------------------------- /app/Jobs/EditSiteSupervisorSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/EditSiteSupervisorSSH.php -------------------------------------------------------------------------------- /app/Jobs/NewAliasSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/NewAliasSSH.php -------------------------------------------------------------------------------- /app/Jobs/NewSiteSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/NewSiteSSH.php -------------------------------------------------------------------------------- /app/Jobs/NodejsSetupSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/NodejsSetupSSH.php -------------------------------------------------------------------------------- /app/Jobs/NodejsStopSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/NodejsStopSSH.php -------------------------------------------------------------------------------- /app/Jobs/PanelDomainAddSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/PanelDomainAddSSH.php -------------------------------------------------------------------------------- /app/Jobs/PanelDomainRemoveSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/PanelDomainRemoveSSH.php -------------------------------------------------------------------------------- /app/Jobs/PanelDomainSslSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/PanelDomainSslSSH.php -------------------------------------------------------------------------------- /app/Jobs/PhpCliSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/PhpCliSSH.php -------------------------------------------------------------------------------- /app/Jobs/RootResetSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/RootResetSSH.php -------------------------------------------------------------------------------- /app/Jobs/SiteDbPwdSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/SiteDbPwdSSH.php -------------------------------------------------------------------------------- /app/Jobs/SiteUserPwdSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/SiteUserPwdSSH.php -------------------------------------------------------------------------------- /app/Jobs/SslSiteSSH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Jobs/SslSiteSSH.php -------------------------------------------------------------------------------- /app/Livewire/Dashboard/TopSites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Dashboard/TopSites.php -------------------------------------------------------------------------------- /app/Livewire/ManageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/ManageService.php -------------------------------------------------------------------------------- /app/Livewire/Server/Fail2ban/Iptables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Server/Fail2ban/Iptables.php -------------------------------------------------------------------------------- /app/Livewire/Server/NewServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Server/NewServer.php -------------------------------------------------------------------------------- /app/Livewire/Server/PackagesInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Server/PackagesInstalled.php -------------------------------------------------------------------------------- /app/Livewire/Server/ServerTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Server/ServerTable.php -------------------------------------------------------------------------------- /app/Livewire/Settings/ApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Settings/ApiKey.php -------------------------------------------------------------------------------- /app/Livewire/Settings/PanelDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Settings/PanelDomain.php -------------------------------------------------------------------------------- /app/Livewire/Site/NewSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Site/NewSite.php -------------------------------------------------------------------------------- /app/Livewire/Site/SiteTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Site/SiteTable.php -------------------------------------------------------------------------------- /app/Livewire/Stats/Cpu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Stats/Cpu.php -------------------------------------------------------------------------------- /app/Livewire/Stats/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Stats/Disk.php -------------------------------------------------------------------------------- /app/Livewire/Stats/Load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Stats/Load.php -------------------------------------------------------------------------------- /app/Livewire/Stats/Mem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Livewire/Stats/Mem.php -------------------------------------------------------------------------------- /app/Models/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Alias.php -------------------------------------------------------------------------------- /app/Models/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Auth.php -------------------------------------------------------------------------------- /app/Models/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Database.php -------------------------------------------------------------------------------- /app/Models/DatabaseUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/DatabaseUser.php -------------------------------------------------------------------------------- /app/Models/DatabaseUserLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/DatabaseUserLink.php -------------------------------------------------------------------------------- /app/Models/DnsRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/DnsRecord.php -------------------------------------------------------------------------------- /app/Models/Mysqluser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Mysqluser.php -------------------------------------------------------------------------------- /app/Models/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Server.php -------------------------------------------------------------------------------- /app/Models/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Site.php -------------------------------------------------------------------------------- /app/Models/Stats/Cpu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Stats/Cpu.php -------------------------------------------------------------------------------- /app/Models/Stats/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Stats/Disk.php -------------------------------------------------------------------------------- /app/Models/Stats/Load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Stats/Load.php -------------------------------------------------------------------------------- /app/Models/Stats/Mem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Stats/Mem.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Userdatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Userdatabase.php -------------------------------------------------------------------------------- /app/Models/Wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Models/Wordpress.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/DatabaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Services/DatabaseService.php -------------------------------------------------------------------------------- /app/Services/DnsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Services/DnsService.php -------------------------------------------------------------------------------- /app/Services/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Services/FileManager.php -------------------------------------------------------------------------------- /app/Services/WordPressService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/Services/WordPressService.php -------------------------------------------------------------------------------- /app/View/Components/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/View/Components/Button.php -------------------------------------------------------------------------------- /app/View/Components/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/View/Components/Card.php -------------------------------------------------------------------------------- /app/View/Components/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/View/Components/Input.php -------------------------------------------------------------------------------- /app/View/Components/Tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/app/View/Components/Tabs.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/artisan -------------------------------------------------------------------------------- /bin/spikster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/bin/spikster -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cipi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/cipi.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/l5-swagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/l5-swagger.php -------------------------------------------------------------------------------- /config/lfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/lfm.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_01_000000_create_auths_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2019_05_01_000000_create_auths_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_02_000000_create_servers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2019_05_02_000000_create_servers_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_03_000000_create_sites_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2019_05_03_000000_create_sites_table.php -------------------------------------------------------------------------------- /database/migrations/2019_05_04_000000_create_aliases_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2019_05_04_000000_create_aliases_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php.php -------------------------------------------------------------------------------- /database/migrations/2021_03_15_201927_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2021_03_15_201927_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_08_042509_create_database_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_05_08_042509_create_database_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_08_042658_create_databases_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_05_08_042658_create_databases_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_21_123810_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_08_21_123810_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_102021_create_cpus_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_09_24_102021_create_cpus_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_102029_create_mems_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_09_24_102029_create_mems_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_102113_create_disks_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_09_24_102113_create_disks_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_102120_create_loads_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_09_24_102120_create_loads_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_29_220814_update_servers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2023_09_29_220814_update_servers_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_25_212533_create_database_user_links_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2024_01_25_212533_create_database_user_links_table.php -------------------------------------------------------------------------------- /database/migrations/2024_01_27_195133_create_wordpresses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2024_01_27_195133_create_wordpresses_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_13_210838_create_dns_records_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/migrations/2024_02_13_210838_create_dns_records_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/docker.sh -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/dockerfile -------------------------------------------------------------------------------- /go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/go.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/assets/css/app.css -------------------------------------------------------------------------------- /public/assets/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/assets/img/error.png -------------------------------------------------------------------------------- /public/assets/img/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/assets/img/notfound.png -------------------------------------------------------------------------------- /public/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/assets/js/app.js -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/livewire/livewire.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/livewire/livewire.esm.js -------------------------------------------------------------------------------- /public/livewire/livewire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/livewire/livewire.js -------------------------------------------------------------------------------- /public/livewire/livewire.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/livewire/livewire.min.js -------------------------------------------------------------------------------- /public/livewire/manifest.json: -------------------------------------------------------------------------------- 1 | 2 | {"/livewire.js":"f41737f6"} 3 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/spikster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/lang/en/spikster.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/application-mark.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/card.blade.php -------------------------------------------------------------------------------- /resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/components/tabs.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/tabs.blade.php -------------------------------------------------------------------------------- /resources/views/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/components/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/design.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/design.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/file_manager/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/file_manager/index.blade.php -------------------------------------------------------------------------------- /resources/views/file_manager/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/file_manager/show.blade.php -------------------------------------------------------------------------------- /resources/views/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/jetstream.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/components/mobile-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/components/mobile-sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/components/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/components/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/old.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/old.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/layouts/settings.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/dashboard/top-sites.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/dashboard/top-sites.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server/fail2ban/iptables.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/server/fail2ban/iptables.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server/new-server.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/server/new-server.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server/packages-installed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/server/packages-installed.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/server/server-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/server/server-table.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings/api-key.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/settings/api-key.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings/panel-domain.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/settings/panel-domain.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/site/new-site.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/site/new-site.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/site/site-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/site/site-table.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/stats/cpu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/stats/cpu.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/stats/disk.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/stats/disk.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/stats/load.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/stats/load.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/stats/mem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/livewire/stats/mem.blade.php -------------------------------------------------------------------------------- /resources/views/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/login.blade.php -------------------------------------------------------------------------------- /resources/views/pdf.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/pdf.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/server/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/edit.blade.php -------------------------------------------------------------------------------- /resources/views/server/fail2ban.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/fail2ban.blade.php -------------------------------------------------------------------------------- /resources/views/server/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/list.blade.php -------------------------------------------------------------------------------- /resources/views/server/logs/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/logs/index.blade.php -------------------------------------------------------------------------------- /resources/views/server/logs/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/logs/show.blade.php -------------------------------------------------------------------------------- /resources/views/server/packages-installed.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/server/packages-installed.blade.php -------------------------------------------------------------------------------- /resources/views/settings/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/settings/settings.blade.php -------------------------------------------------------------------------------- /resources/views/settings/users.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/settings/users.blade.php -------------------------------------------------------------------------------- /resources/views/site/database/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/database/index.blade.php -------------------------------------------------------------------------------- /resources/views/site/dns/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/dns/edit.blade.php -------------------------------------------------------------------------------- /resources/views/site/dns/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/dns/index.blade.php -------------------------------------------------------------------------------- /resources/views/site/dns/new.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/dns/new.blade.php -------------------------------------------------------------------------------- /resources/views/site/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/edit.blade.php -------------------------------------------------------------------------------- /resources/views/site/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/list.blade.php -------------------------------------------------------------------------------- /resources/views/site/wordpress/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/site/wordpress/index.blade.php -------------------------------------------------------------------------------- /resources/views/template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/template.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/l5-swagger/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/l5-swagger/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/l5-swagger/index.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/l5-swagger/jetstream/mail/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/l5-swagger/jetstream/mail/team-invitation.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/livewire/bootstrap.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/simple-bootstrap.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/livewire/simple-bootstrap.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/simple-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/livewire/simple-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/vendor/livewire/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/conf.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/jetstream.php -------------------------------------------------------------------------------- /routes/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/server.php -------------------------------------------------------------------------------- /routes/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/settings.php -------------------------------------------------------------------------------- /routes/sh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/sh.php -------------------------------------------------------------------------------- /routes/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/site.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/routes/web.php -------------------------------------------------------------------------------- /spikster/cli/server/list-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/spikster/cli/server/list-services.sh -------------------------------------------------------------------------------- /spikster/cli/server/manage-cronjobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/spikster/cli/server/manage-cronjobs.sh -------------------------------------------------------------------------------- /spikster/cli/server/manage-php-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/spikster/cli/server/manage-php-versions.sh -------------------------------------------------------------------------------- /spikster/cli/server/manage-services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/spikster/cli/server/manage-services.sh -------------------------------------------------------------------------------- /storage/api-docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/api-docs/swagger.json -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/cipi/cron.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/cron.conf -------------------------------------------------------------------------------- /storage/app/cipi/delsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/delsite.sh -------------------------------------------------------------------------------- /storage/app/cipi/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/deploy.sh -------------------------------------------------------------------------------- /storage/app/cipi/host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/host.conf -------------------------------------------------------------------------------- /storage/app/cipi/newsite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/newsite.sh -------------------------------------------------------------------------------- /storage/app/cipi/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/nginx.conf -------------------------------------------------------------------------------- /storage/app/cipi/package-manager/php/7.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/package-manager/php/7.4/install.sh -------------------------------------------------------------------------------- /storage/app/cipi/package-manager/php/8.0/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/package-manager/php/8.0/install.sh -------------------------------------------------------------------------------- /storage/app/cipi/package-manager/php/8.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/package-manager/php/8.1/install.sh -------------------------------------------------------------------------------- /storage/app/cipi/package-manager/php/8.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/package-manager/php/8.2/install.sh -------------------------------------------------------------------------------- /storage/app/cipi/package-manager/php/8.3/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/package-manager/php/8.3/install.sh -------------------------------------------------------------------------------- /storage/app/cipi/panel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/panel.conf -------------------------------------------------------------------------------- /storage/app/cipi/patch202112091.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/patch202112091.sh -------------------------------------------------------------------------------- /storage/app/cipi/patch202112101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/patch202112101.sh -------------------------------------------------------------------------------- /storage/app/cipi/patch202112181.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/patch202112181.sh -------------------------------------------------------------------------------- /storage/app/cipi/patch20230821.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/patch20230821.sh -------------------------------------------------------------------------------- /storage/app/cipi/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/php.conf -------------------------------------------------------------------------------- /storage/app/cipi/rootreset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/rootreset.sh -------------------------------------------------------------------------------- /storage/app/cipi/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/setup.sh -------------------------------------------------------------------------------- /storage/app/cipi/sitepass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/sitepass.sh -------------------------------------------------------------------------------- /storage/app/cipi/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/app/cipi/supervisor.conf -------------------------------------------------------------------------------- /storage/app/cipi/version.md: -------------------------------------------------------------------------------- 1 | 3.1.15 2 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/server_logs: -------------------------------------------------------------------------------- 1 | /var/log -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/CipiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/tests/Feature/CipiTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /utility/cipi-update/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/utility/cipi-update/run.sh -------------------------------------------------------------------------------- /utility/design/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/utility/design/banner.png -------------------------------------------------------------------------------- /utility/zero-page/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/utility/zero-page/index.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolanmees/Spikster/HEAD/webpack.mix.js --------------------------------------------------------------------------------