Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
50bd9eee
Commit
50bd9eee
authored
Feb 01, 2018
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: removed section with session table sql, that is not needed anymore
parent
d08a829b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
docs/sources/installation/configuration.md
+0
-25
No files found.
docs/sources/installation/configuration.md
View file @
50bd9eee
...
@@ -671,31 +671,6 @@ session provider you have configured.
...
@@ -671,31 +671,6 @@ session provider you have configured.
-
**memcache:**
ex: 127.0.0.1:11211
-
**memcache:**
ex: 127.0.0.1:11211
-
**redis:**
ex:
`addr=127.0.0.1:6379,pool_size=100,prefix=grafana`
-
**redis:**
ex:
`addr=127.0.0.1:6379,pool_size=100,prefix=grafana`
If you use MySQL or Postgres as the session store you need to create the
session table manually.
Mysql Example:
```
bash
CREATE TABLE
`
session
`
(
`
key
`
CHAR
(
16
)
NOT NULL,
`
data
`
BLOB,
`
expiry
`
INT
(
11
)
UNSIGNED NOT NULL,
PRIMARY KEY
(
`
key
`
)
)
ENGINE
=
MyISAM DEFAULT
CHARSET
=
utf8
;
```
Postgres Example:
```
bash
CREATE TABLE session
(
key CHAR
(
16
)
NOT NULL,
data BYTEA,
expiry INTEGER NOT NULL,
PRIMARY KEY
(
key
)
)
;
```
Postgres valid
`sslmode`
are
`disable`
,
`require`
,
`verify-ca`
, and
`verify-full`
(default).
Postgres valid
`sslmode`
are
`disable`
,
`require`
,
`verify-ca`
, and
`verify-full`
(default).
### cookie_name
### cookie_name
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment