Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. location / {
  2. error_page 598 = @retry;
  3. error_page 599 = @no_retry;
  4. if ($request_method = POST) {
  5. return 599;
  6. }
  7. return 598;
  8. }
  9.  
  10. location @retry {
  11. proxy_pass http://backend;
  12. }
  13.  
  14. location @no_retry {
  15. proxy_pass http://backend;
  16. proxy_next_upstream off;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement