Introduces the Go photo-api service, nginx/systemd deploy wiring, and Next.js gallery/lightbox pages so event photos can be managed and browsed. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
upstream spanglish_frontend {
|
|
server 127.0.0.1:3019;
|
|
}
|
|
|
|
upstream spanglish_backend {
|
|
server 127.0.0.1:3018;
|
|
}
|
|
|
|
upstream spanglish_photos {
|
|
server 127.0.0.1:3020;
|
|
} |