-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All module .ini syntax changed to app config - either .php config fil…
…es or .env files
- Loading branch information
Showing
33 changed files
with
12,096 additions
and
228 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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
| -------------------------------------------------------------------- | ||
| Constants used for 2 factor authentication with Google Authenticator | ||
| -------------------------------------------------------------------- | ||
| | ||
| Once you edit this file, you must move it to the directory defined by | ||
| app_data_dir in your config/app.php file. No need to re-run the | ||
| config_gen.php script. | ||
| | ||
| SECURITY ALERT ! MAKE SURE THAT THIS FILE IS NOT ACCESSIBLE BY THE BROWSER ! | ||
| | ||
| Enter the raw secret value (minimum 10 characters) to be used with the Google | ||
| Authenticator Application (or any TOTP app providing 6 digit pins). Users | ||
| must opt-in for 2fa on the site settings page which provides a QR barcode | ||
| to configure Google Authenticator. | ||
| | ||
| In order for 2fa to work, your server MUST have an accurate date and time, | ||
| otherwise the codes won't match up. NTP is the standard way to keep a server's | ||
| time synced: http://www.ntp.org/ | ||
| | ||
*/ | ||
'2fa_secret' => env('APP_2FA_SECRET', ''), | ||
|
||
/* | ||
| | ||
| By default the generated secret will be 64 characters before being base32 | ||
| encoded. To use a shorter secret that is easier to manually enter, set the | ||
| following to true. Note that if you change this setting after users have | ||
| enabled 2fa, they will have to use a backup code to login, then reset there | ||
| account in the authenticator app. | ||
*/ | ||
'2fa_simple' => env('APP_2FA_SIMPLE', false) | ||
]; |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
| [Personal] | ||
| ---------------------------------------- | ||
| Constants used for CardDav communication | ||
| ---------------------------------------- | ||
| | ||
| Once you edit this file, you must move it to the directory defined by | ||
| app_data_dir in your config/app.php file. No need to re-run the | ||
| config_gen.php script. | ||
| | ||
| SECURITY ALERT ! MAKE SURE THAT THIS FILE IS NOT ACCESSIBLE BY THE BROWSER ! | ||
| | ||
| Create one section for each CardDav backend you want to support. The section | ||
| name will be used in the UI for the name of this addressbook | ||
| | ||
| | ||
*/ | ||
'server' => env('CARD_DAV_SERVER', 'http://localhost:5232'), | ||
]; |
Oops, something went wrong.