Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
anjasamar committed Jun 27, 2024
1 parent ea00b89 commit 62fe4cc
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 14 deletions.
14 changes: 7 additions & 7 deletions config/linkpanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
return [

// Panel Credential
'username' => env('LINKPANEL_USERNAME', 'administrator'),
'password' => env('LINKPANEL_PASSWORD', '12345678'),
'username' => env('LINKPANEL_USERNAME', 'atsilinkpanel'),
'password' => env('LINKPANEL_PASSWORD', 'adminpass-1230'),

// JWT Settings
'jwt_secret' => env('JWT_SECRET', env('APP_KEY')),
Expand All @@ -13,15 +13,15 @@

// Custom Vars
'name' => env('LINKPANEL_NAME', 'LinkPanel Control Panel'),
'website' => env('LINKPANEL_WEBSITE', 'https://linkpanel.sh'),
'activesetupcount' => env('LINKPANEL_ACTIVESETUPCOUNT', 'https://service.linkpanel.sh/setupcount'),
'documentation' => env('LINKPANEL_DOCUMENTATION', 'https://linkpanel.sh/docs.html'),
'app' => env('LINKPANEL_APP', 'https://play.google.com/store/apps/details?id=it.christiangiupponi.linkpanel'),
'website' => env('LINKPANEL_WEBSITE', 'https://linkpanel.atsi.cloud'),
'activesetupcount' => env('LINKPANEL_ACTIVESETUPCOUNT', 'https://service.linkpanel.atsi.cloud/setupcount'),
'documentation' => env('LINKPANEL_DOCUMENTATION', 'https://linkpanel.atsi.cloud/docs.html'),
'app' => env('LINKPANEL_APP', 'https://play.google.com/store/apps/details?id=atsidev.linkpanel'),

// Global Settings
'users_prefix' => env('LINKPANEL_USERS_PREFIX', 'cp'),
'phpvers' => ['8.3','8.2','8.1','8.0','7.4'],
'services' => ['nginx','php','mysql','redis','supervisor'],
'default_php' => '8.0',
'default_php' => '8.3',

];
2 changes: 1 addition & 1 deletion installer-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ echo ""
echo " To manage your server visit"
echo " Your IP Address [http://$IP] OR [http://$HOSTNAME]"
echo " and click on 'dashboard' button."
echo " Default credentials are: administrator / 12345678"
echo " Default credentials are: atsilinkpanel / adminpass-1230"
echo ""
echo "***********************************************************"
echo " DO NOT LOSE AND KEEP SAFE THIS DATA"
Expand Down
2 changes: 1 addition & 1 deletion installer-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ echo ""
echo " To manage your server visit"
echo " Your IP Address [http://$IP] OR [http://$HOSTNAME]"
echo " and click on 'dashboard' button."
echo " Default credentials are: administrator / 12345678"
echo " Default credentials are: atsilinkpanel / adminpass-1230"
echo ""
echo "***********************************************************"
echo " DO NOT LOSE AND KEEP SAFE THIS DATA"
Expand Down
1 change: 1 addition & 0 deletions resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<i class="fas fa-arrow-left mr-1"></i>
{{ __('linkpanel.return_to_dashboard') }}
</a>
<strong>Powered By</strong>
<img class="mb-4 img-error" src="/assets/img/logo.png" />
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,13 @@
<div class="content">
<div class="title m-b-md">
{{ config('linkpanel.name') }}
<img class="mb-4 img-error" src="/assets/img/logo.png" />
</div>

<div class="links">
<a target="_blank" href="{{ config('linkpanel.website') }}">Website</a>
<a target="_blank" href="{{ config('linkpanel.documentation') }}">Documentation</a>
<a target="_blank" href="{{ config('linkpanel.app') }}">Mobile App</a>
<a href="/dashboard">Go To Dashboard</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion routes/sh.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
Route::get('/sitepass', [ShellController::class, 'sitepass']);

// Client Patch
Route::get('/client-patch/202112091', [ShellController::class, 'patch-update-linkpanel']);
Route::get('/client-patch/linkpanel-updater', [ShellController::class, 'patch-update-linkpanel']);
2 changes: 1 addition & 1 deletion storage/app/linkpanel/panel.conf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ server {

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
}

location ~ /\.(?!well-known).* {
Expand Down
2 changes: 1 addition & 1 deletion storage/app/linkpanel/setup-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ echo ""
echo " To manage your server visit"
echo " Your IP Address [http://$IP] OR [http://$HOSTNAME]"
echo " and click on 'dashboard' button."
echo " Default credentials are: admin / admin1230"
echo " Default credentials are: atsilinkpanel / adminpass-1230"
echo ""
echo "***********************************************************"
echo " DO NOT LOSE AND KEEP SAFE THIS DATA"
Expand Down
2 changes: 1 addition & 1 deletion storage/app/linkpanel/setup-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ echo ""
echo " To manage your server visit"
echo " Your IP Address [http://$IP] OR [http://$HOSTNAME]"
echo " and click on 'dashboard' button."
echo " Default credentials are: admin / admin1230"
echo " Default credentials are: atsilinkpanel / adminpass-1230"
echo ""
echo "***********************************************************"
echo " DO NOT LOSE AND KEEP SAFE THIS DATA"
Expand Down

0 comments on commit 62fe4cc

Please sign in to comment.