Skip to content

Commit

Permalink
Tweak OAuth config
Browse files Browse the repository at this point in the history
  • Loading branch information
emwalker committed Oct 17, 2024
1 parent dadbce4 commit 44b4601
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/server/configurePassport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default (app: Express, fetcher: FetcherBase): Express => {
secret: process.env.DIGRAPH_COOKIE_SECRET || 'keyboard cat',
resave: true,
saveUninitialized: true,
proxy: process.env.NODE_ENV == 'production',
proxy: true,
// Expire in one month
cookie: { maxAge: 1000 * 3600 * 24 * 30 },
}))
Expand Down
4 changes: 2 additions & 2 deletions k8s/overlays/prod/digraph/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ secretGenerator:

images:
- name: emwalker/digraph-api:latest
newTag: v1.1.10
newTag: v1.1.11
- name: emwalker/digraph-node:latest
newTag: v1.1.10
newTag: v1.1.11
- name: emwalker/digraph-node:next
newTag: v1.2.25
2 changes: 1 addition & 1 deletion k8s/prod-release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.1.10
v1.1.11

0 comments on commit 44b4601

Please sign in to comment.