Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZebraHr committed Aug 22, 2023
1 parent b311eec commit f743e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ server {

location /api/ {
proxy_set_header Host $http_host;
proxy_pass http://backend:9000/api/;
proxy_pass http://backend:8000/api/;
client_max_body_size 20M;
}
location /admin/ {
proxy_set_header Host $http_host;
proxy_pass http://backend:9000/admin/;
proxy_pass http://backend:8000/admin/;
client_max_body_size 20M;
}

Expand Down

0 comments on commit f743e10

Please sign in to comment.