Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
0aea4da1
Commit
0aea4da1
authored
13 years ago
by
Lloyd Hilaiel
Browse files
Options
Downloads
Patches
Plain Diff
move cookie secret into var_path. issue #172
parent
246ea307
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
browserid/app.js
+2
-13
2 additions, 13 deletions
browserid/app.js
with
2 additions
and
13 deletions
browserid/app.js
+
2
−
13
View file @
0aea4da1
...
...
@@ -35,13 +35,7 @@
const
fs
=
require
(
'
fs
'
),
path
=
require
(
'
path
'
);
// create the var directory if it doesn't exist
var
VAR_DIR
=
path
.
join
(
__dirname
,
"
var
"
);
try
{
fs
.
mkdirSync
(
VAR_DIR
,
0755
);
}
catch
(
e
)
{
};
const
path
=
require
(
'
path
'
),
url
=
require
(
'
url
'
),
crypto
=
require
(
'
crypto
'
),
wsapi
=
require
(
'
./lib/wsapi.js
'
),
...
...
@@ -62,9 +56,7 @@ logger.info("browserid server starting up");
// open the databse
db
.
open
(
configuration
.
get
(
'
database
'
));
// looks unused, see run.js
// const STATIC_DIR = path.join(path.dirname(__dirname), "static");
const
COOKIE_SECRET
=
secrets
.
hydrateSecret
(
'
cookie_secret
'
,
VAR_DIR
);
const
COOKIE_SECRET
=
secrets
.
hydrateSecret
(
'
browserid_cookie
'
,
configuration
.
get
(
'
var_path
'
));
const
COOKIE_KEY
=
'
browserid_state
'
;
function
internal_redirector
(
new_url
)
{
...
...
@@ -155,8 +147,6 @@ function router(app) {
});
};
exports
.
varDir
=
VAR_DIR
;
exports
.
setup
=
function
(
server
)
{
// request to logger, dev formatted which omits personal data in the requests
server
.
use
(
express
.
logger
({
...
...
@@ -175,7 +165,6 @@ exports.setup = function(server) {
var
cookieSessionMiddleware
=
sessions
({
secret
:
COOKIE_SECRET
,
// session_key: COOKIE_KEY,
key
:
COOKIE_KEY
,
cookie
:
{
path
:
'
/
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment