Skip to content

Commit

Permalink
FIX build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaFM committed Nov 22, 2024
1 parent 3d1a08e commit d132171
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ ENV GITHUBAPP_API_URL $GITHUBAPP_API_URL
ENV APP_BASE_URL $APP_BASE_URL
ENV NODE_OPTIONS --openssl-legacy-provider
ENV AUTH_ORIGIN $AUTH_ORIGIN
ENV NITRO_PORT 3000
ENV NITRO_HOST localhost


COPY package*.json ./

Expand Down
2 changes: 1 addition & 1 deletion nginx_copy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server {
}

location / {
proxy_pass http://127.0.0.1:3000; # Aquí hacemos el proxy hacia el puerto 3000 dentro del contenedor
proxy_pass http://localhost:3000; # Aquí hacemos el proxy hacia el puerto 3000 dentro del contenedor
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
Expand Down

0 comments on commit d132171

Please sign in to comment.