forked from ProxyPanel/ProxyPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
692d466
commit 273e00f
Showing
18 changed files
with
128 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,11 @@ APP_LOCALE=zh-CN | |
APP_FALLBACK_LOCALE=en | ||
LOG_CHANNEL=daily | ||
|
||
# 数据库 | ||
DB_CONNECTION=mysql | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_DATABASE=SSRPanel_OtakuMod | ||
DB_DATABASE=ProxyPanel | ||
DB_USERNAME=root | ||
DB_PASSWORD=root | ||
DB_STRICT=false | ||
|
@@ -21,22 +22,24 @@ BROADCAST_DRIVER=redis | |
CACHE_DRIVER=redis | ||
QUEUE_CONNECTION=redis | ||
SESSION_DRIVER=redis | ||
SESSION_CONNECTION=session | ||
SESSION_LIFETIME=120 | ||
|
||
# Redis 设置 | ||
REDIS_HOST=127.0.0.1 | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
MAIL_DRIVER=smtp | ||
MAIL_DRIVER=smtp #或使用 mailgun | ||
# SMTP设置 | ||
MAIL_HOST=smtp.exmail.qq.com | ||
MAIL_PORT=465 | ||
MAIL_USERNAME=admin@ssrpanel.com | ||
MAIL_USERNAME=admin@proxypanel.ml | ||
MAIL_PASSWORD=password | ||
MAIL_ENCRYPTION=ssl | ||
MAIL_LOG_CHANNEL=daily | ||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME=SSRPanel | ||
|
||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME=ProxyPanel | ||
# Mailgun设置 | ||
MAILGUN_DOMAIN= | ||
MAILGUN_SECRET= | ||
|
||
|
@@ -53,4 +56,4 @@ PUSHER_APP_CLUSTER=mt1 | |
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" | ||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||
|
||
REDIRECT_HTTPS=true | ||
REDIRECT_HTTPS=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
return [ | ||
'number' => '210', | ||
'name' => 'SSRPanel_OtakuMod' | ||
'number' => '2.4.a', | ||
'name' => 'ProxyPanel' | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Taylor Otwell <[email protected]> | ||
*/ | ||
|
||
// 判断是否安装SSRPanel | ||
// 判断是否安装ProxyPanel | ||
if (!is_file(__DIR__.'/../.env')) | ||
{ | ||
header("location:./install.php"); | ||
|
Oops, something went wrong.