fix(lxc): Revert PORT to 3000 to fix Nginx gateway connection

This commit is contained in:
mARTin 2026-03-02 17:29:37 +01:00
parent 6103ecc417
commit d4a08f236d
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "my-weekly-todo-list", "name": "my-weekly-todo-list",
"version": "1.10.3", "version": "1.10.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "my-weekly-todo-list", "name": "my-weekly-todo-list",
"version": "1.10.3", "version": "1.10.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@auth/prisma-adapter": "^2.11.1", "@auth/prisma-adapter": "^2.11.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "my-weekly-todo-list", "name": "my-weekly-todo-list",
"version": "1.10.3", "version": "1.10.4",
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view", "description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {

View File

@ -26,7 +26,7 @@ npm run build
echo -e "${YELLOW}Step 6: Restarting server with PM2 (Standalone Mode)...${NC}" echo -e "${YELLOW}Step 6: Restarting server with PM2 (Standalone Mode)...${NC}"
# Delete old process if it exists to ensure fresh config # Delete old process if it exists to ensure fresh config
pm2 delete my-weekly-todo || true pm2 delete my-weekly-todo || true
PORT=3002 NEXTAUTH_URL=https://todo.martin-bierschenk.de pm2 start .next/standalone/server.js --name "my-weekly-todo" PORT=3000 NEXTAUTH_URL=https://todo.martin-bierschenk.de pm2 start .next/standalone/server.js --name "my-weekly-todo"
pm2 save pm2 save
echo -e "${GREEN}Update complete! App is running on LXC.${NC}" echo -e "${GREEN}Update complete! App is running on LXC.${NC}"