Skip to content

Commit

Permalink
nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
framitdavid committed Feb 6, 2024
1 parent 951e9b6 commit 599de42
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions development/load-balancer/nginx.conf.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,22 @@ http {

upstream designer {
server host.docker.internal:6000;
server host.podman.internal:6000;
}

upstream repositories {
server host.docker.internal:3000;
server host.podman.internal:3000;
}

upstream localtest {
server host.docker.internal:5101;
server host.podman.internal:5101;
}

upstream app {
server host.docker.internal:5005;
server host.podman.internal:5005;
}

upstream pdfservice {
server host.docker.internal:5300;
server host.podman.internal:5300;
}

server {
Expand Down Expand Up @@ -61,7 +56,7 @@ http {
if ($dev_dashboard) {
add_header X-Dashboard-Source webpackDash;
rewrite /designer/frontend/dashboard/(.*) /$1 break;
proxy_pass http://host.containers.internal:2003;
proxy_pass http://host.docker.internal:2003;
}

if ($dev_dashboard != 1) {
Expand Down

0 comments on commit 599de42

Please sign in to comment.