429 Too Many Requests #7847
Unanswered
SyedAsadRazaDevops
asked this question in
Self hosted
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Whenever I activate the pre-chat/bot option, I receive a 429 Too Many Requests error. My Chatwoot is deployed on localhost:3003 port, and I use the Certbot in Nginx to set up HTTPS on my website. Below is the template Nginx server block. Can you please guide me?
` upstream chatwoot-backend {
zone upstreams 64K;
server 127.0.0.1:3003;
keepalive 32;
}
server {
server_name chat.myweb.com www.chat.myweb.com;
access_log /var/log/nginx/chatwoot_access.log;
error_log /var/log/nginx/chatwoot_error.log;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://chatwoot-backend/;
proxy_redirect off;
}
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/chat.myweb.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/chat.myweb.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = chat.myweb.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name chat.myweb.com www.chat.myweb.com;
return 404; # managed by Certbot
} `
and i still get 429 too many request error
Beta Was this translation helpful? Give feedback.
All reactions