Skip to content

Commit

Permalink
Merge pull request cypht-org#856 from josaphatim/fixed-parms-spelling…
Browse files Browse the repository at this point in the history
…-issue

Fixed spelling in .env and added missing parameters
  • Loading branch information
kroky authored Jan 10, 2024
2 parents dd14bf3 + 1fc6db8 commit 319e8d4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,18 @@ MEMCACHED_AUTH=false
MEMCACHED_USER=
MEMCACHED_PASS=

ALLOW_LAND_SESSION=false
LAND_SESSION_LIFETIME=30
ALLOW_LONG_SESSION=false
LONG_SESSION_LIFETIME=30

ENCRYPT_AJAX_REQUESTS=
ENCRYPT_LOCAL_STORAGE=

ENCRYPT_LOCAL_STORAGE=

DISABLE_IP_CHECK=false

DISABLE_ORIGIN_CHECK=true

ALLOW_EXTERNAL_IMAGE_SOURCES=true

SINGLE_SERVER_MODE=false
Expand All @@ -103,6 +106,7 @@ DEFAULT_SETTING_SENT_SINCE='-1 week'
DEFAULT_SETTING_SHOW_LIST_ICONS=true
DEFAULT_SETTING_START_PAGE=none
DEFAULT_SETTING_DISABLE_DELETE_PROMPT=false
DEFAULT_SETTING_FLAGGED_PER_SOURCE=20
DEFAULT_SETTING_NO_FOLDER_ICONS=false
DEFAULT_SETTING_ALL_EMAIL_PER_SOURCE=20
DEFAULT_SETTING_ALL_EMAIL_SINCE='-1 week'
Expand Down
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -495,14 +495,14 @@
| includes the client's IP. With this option enabled a client IP can change
| mid-session and it won't log them out
*/
'allow_long_session' => env('ALLOW_LAND_SESSION', false),
'allow_long_session' => env('ALLOW_LONG_SESSION', false),

/*
|
| Set the session lifetime in days. Only applies if allow_long_session is set to
| true, and a user checks the box to "stay logged in" during login.
*/
'long_session_lifetime' => env('LAND_SESSION_LIFETIME', 30),
'long_session_lifetime' => env('LONG_SESSION_LIFETIME', 30),

/*
| --------------------------
Expand Down

0 comments on commit 319e8d4

Please sign in to comment.