nginx.conf file edit
All checks were successful
test/timeline-frontend/pipeline/head This commit looks good

This commit is contained in:
2025-12-31 09:45:25 +08:00
parent f6f0b05ac8
commit 5e259ec42b

View File

@@ -6,13 +6,13 @@ http {
include /etc/nginx/mime.types; include /etc/nginx/mime.types;
default_type application/octet-stream; default_type application/octet-stream;
upstream user-api { upstream user-api {
server localhost:33333; server localhost:33333/user-api;
} }
upstream file { upstream file {
server localhost:33333; server localhost:33333/file;
} }
upstream story { upstream story {
server localhost:33333; server localhost:33333/story;
} }
server { server {
listen 3001; listen 3001;