251003 frontend 2

This commit is contained in:
admin
2025-10-03 16:52:13 +07:00
parent 4d7e69247d
commit 10150583cc
2 changed files with 6 additions and 7 deletions

View File

@@ -85,7 +85,7 @@ services:
JWT_EXPIRES_IN: "12h"
PASSWORD_SALT_ROUNDS: "10"
FRONTEND_ORIGIN: "https://lcbp3.np-dms.work"
CORS_ORIGINS: "https://backend.np-dms.work,http://localhost:3000,http://127.0.0.1:3000"
CORS_ORIGINS: "https://lcbp3.np-dms.work,http://localhost:3000,http://127.0.0.1:3000"
RATE_LIMIT_WINDOW_MS: "900000"
RATE_LIMIT_MAX: "200"
BACKEND_LOG_DIR: "/app/logs"
@@ -133,6 +133,7 @@ services:
NEXT_PUBLIC_AUTH_MODE: "cookie"
NEXT_PUBLIC_DEBUG_AUTH: "1"
NEXT_TELEMETRY_DISABLED: "1"
INTERNAL_API_BASE: "http://backend:3001"
JWT_ACCESS_SECRET: "9a6d8705a6695ab9bae4ca1cd46c72a6379aa72404b96e2c5b59af881bb55c639dd583afdce5a885c68e188da55ce6dbc1fb4aa9cd4055ceb51507e56204e4ca"
JWT_REFRESH_SECRET: "743e798bb10d6aba168bf68fc3cf8eff103c18bd34f1957a3906dc87987c0df139ab72498f2fe20d6c4c580f044ccba7d7bfa4393ee6035b73ba038f28d7480c"
expose:
@@ -151,10 +152,8 @@ services:
healthcheck:
test:
[
"CMD",
"wget",
"-qO-",
'http://127.0.0.1:3000/health | grep -q ''"ok":true''',
"CMD-SHELL",
'wget -qO- http://127.0.0.1:3000/health | grep -q ''"ok":true''',
]
interval: 15s
timeout: 5s

View File

@@ -3,9 +3,9 @@
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"dev": "next dev -H 0.0.0.0 -p 3000",
"build": "next build",
"start": "next start -p 3000",
"start": "next start -H 0.0.0.0 -p 3000",
"lint": "next lint",
"format": "prettier --write ."
},