Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Зуев Егор
/
wiki.dev
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Authored by
Dan Brown
2016-03-05 09:05:27 +0000
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Commit
069431db72c6dfc94ff6788f24aa895bfc1f2a45
069431db
2 parents
bc2b3106
38d822e0
Merge branch 'add_memcached' of
git://github.com/nwalke/BookStack
into nwalke-add_memcached
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
.env.example
config/cache.php
.env.example
View file @
069431d
...
...
@@ -12,6 +12,9 @@ DB_PASSWORD=database_user_password
# Cache and session
CACHE_DRIVER=file
SESSION_DRIVER=file
# If using Memcached, comment the above and uncomment these
#CACHE_DRIVER=memcached
#SESSION_DRIVER=memcached
QUEUE_DRIVER=sync
# Storage
...
...
@@ -54,3 +57,8 @@ MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
# Memcached settings
#MEMCACHED_HOST=127.0.0.1
# If using a UNIX socket path for the host, set the port to 0
#MEMCACHED_PORT=11211
\ No newline at end of file
...
...
config/cache.php
View file @
069431d
...
...
@@ -51,7 +51,9 @@ return [
'driver'
=>
'memcached'
,
'servers'
=>
[
[
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
'weight'
=>
100
,
'host'
=>
env
(
'MEMCACHED_HOST'
,
'127.0.0.1'
),
'port'
=>
env
(
'MEMCACHED_PORT'
,
11211
),
'weight'
=>
100
,
],
],
],
...
...
Please
register
or
sign in
to post a comment