Issues information
- OS: Mac
- databases: PostgreSQL
- Programming language and version: Node/React JS
- Link to your project on Github/Gitlab: https://github.com/dandray/pathline-business
Your issue
Hello,
I am facing an issue with the sendinblue API since I moved from AWS cluster to the Scaleway one.
It works perfectly locally, but I have a timeout error in production.
I checked the environment variables on the environment, everything is the same than what I have in local (both SMTP_KEY and API Key are well configured).
Could you help me to find out what can be the problem that causes this timeout error ?
Thank you in advance for the help,
Dan
@rophilogene have you any idea about this ?
Dockerfile content (if any)
`FROM node:16-alpine as build
ARG REACT_APP_API_URL
ENV REACT_APP_API_URL $REACT_APP_API_URL
ARG PUBLIC_URL
ENV PUBLIC_URL $PUBLIC_URL
WORKDIR /app
COPY ./client .
RUN npm install && npm run build
FROM nginx:latest
COPY --from=build /app/build /usr/share/nginx/html
COPY ./deployment/nginx-custom.conf /etc/nginx/conf.d/default.conf
EXPOSE 3000
CMD [“nginx”, “-g”, “daemon off;”]`