Skip to content

Commit

Permalink
fix nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
d2avids committed Jun 26, 2024
1 parent 949b255 commit fe9a265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

location /api/ {
proxy_set_header Host $http_host;
proxy_pass http://backend:8000/api/;
proxy_pass http://backend:8080/api/;
}

location /admin/ {
proxy_set_header Host $http_host;
proxy_pass http://backend:8000/admin/;
proxy_pass http://backend:8080/admin/;
}

location /static/ {
Expand Down

0 comments on commit fe9a265

Please sign in to comment.