Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ http {
# But 'hash' works better with explicit servers or using a DNS resolver dynamically if needed.
# Nginx free version requires manual IP listings for sticky sessions,
# or we rely on ip_hash for generic load balancing if behind a single reverse proxy.
server windsurf-api:3003 resolve;
zone windsurf_backend_zone 64k;
server windsurf-api:3003 resolve;

Copilot AI Apr 25, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The server windsurf-api:3003 resolve; line is indented with a tab while the rest of this file uses spaces. Please switch this to the same space indentation as surrounding directives to keep formatting consistent and avoid mixed whitespace in nginx.conf.

Suggested change
server windsurf-api:3003 resolve;
server windsurf-api:3003 resolve;

Copilot uses AI. Check for mistakes.
}

server {
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { readFileSync, existsSync, mkdirSync } from 'fs';
import { resolve, dirname } from 'path';
import { resolve, dirname, join } from 'path';
import { fileURLToPath } from 'url';

const __dirname = dirname(fileURLToPath(import.meta.url));
Expand Down