P
P
Pavel2016-06-09 16:47:10
Nginx
Pavel, 2016-06-09 16:47:10

How to change NGINX 429 Too Many Requests error message?

I want to change the inscription of the issued error 429 Too Many Requests

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrey Sidorov, 2016-06-10
@morr

In the server section of the nginx config, add
and place the 429.html file where server root points.
Here is a snippet of the config as an example

server {
  listen 80;
  server_name zzzz.org;
  root /home/apps/zzzz/production/current/public;

  error_page 502 /502.html;

  # ...
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question