Skip to content

Commit 599990b

Browse files
authored
Merge pull request #104 from CS3219-AY2425S1/fix-nginx
Fix incorrect nginx route
2 parents 44e4390 + abf1cdf commit 599990b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/api-gateway/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ http {
5858
# Proxy for /api/match/
5959
location /api/match/ {
6060
set $backend_service "matching-service:3003";
61-
proxy_pass http://$backend_service/api/match/;
61+
proxy_pass http://$backend_service;
6262
include /etc/nginx/proxy_params;
6363
}
6464

0 commit comments

Comments
 (0)