fix default session cookie max age,

disable cgo in build
This commit is contained in:
Arthur Lu 2025-02-11 07:09:48 +00:00
parent 8b727920ec
commit 56766847f8
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
build: clean build: clean
go build -ldflags="-s -w" -o dist/ . CGO_ENABLED=0 go build -ldflags="-s -w" -o dist/ .
test: clean test: clean
go run . go run .

View File

@ -8,6 +8,6 @@
"path": "/", "path": "/",
"httpOnly": true, "httpOnly": true,
"secure": false, "secure": false,
"maxAge": 7200000 "maxAge": 7200
} }
} }