We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The matterllo is deployed using a docker on GCP (4 core / 8g ram) internally with Nginx/SSL as the proxy.
However, it takes around 50 seconds to load the board list (https://XXX/board) from Trello each time we plan to add the integration.
Following is the config for nginx
location / { client_max_body_size 50M; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_buffers 256 16k; proxy_buffer_size 16k; proxy_read_timeout 600s; proxy_pass http://internal-ip:8000; }
location / {
client_max_body_size 50M;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffers 256 16k;
proxy_buffer_size 16k;
proxy_read_timeout 600s;
proxy_pass http://internal-ip:8000;
}
The text was updated successfully, but these errors were encountered:
Hello @AndrewTW
Thanks for the issue / feedbzae I need to refactor the way to retrieve the board and create the hook between Trello and Matterllo.
I ll try to fix this issue in the current month or november.
Thanks
Sorry, something went wrong.
No branches or pull requests
Hi,
The matterllo is deployed using a docker on GCP (4 core / 8g ram) internally with Nginx/SSL as the proxy.
However, it takes around 50 seconds to load the board list (https://XXX/board) from Trello each time we plan to add the integration.
Following is the config for nginx
location / {
client_max_body_size 50M;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffers 256 16k;
proxy_buffer_size 16k;
proxy_read_timeout 600s;
proxy_pass http://internal-ip:8000;
}
The text was updated successfully, but these errors were encountered: