Guest User

Untitled

a guest
Apr 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ### nginx のタイムアウト値を伸ばす
  2. nginx.conf proxy の修正
  3.  
  4. ```
  5. proxy_read_timeout 300
  6. ```
  7.  
  8. nginx.conf fcgi のタイムアウト値修正
  9. ```
  10. fastcgi_send_timeout 300;
  11. ```
  12.  
  13. php.ini の最大実効時間(これは必要ないかも)
  14.  
  15. ```
  16. max_execution_time = 300
  17. ```
  18.  
  19. php-fpm.conf の終了するまでのタイムアウト値
  20.  
  21. ```
  22. request_terminate_timeout = 300
  23. ```
  24.  
  25. ### AWS側のタイムアウト値
  26. - ロードバランサーのタイムアウト値を伸ばす
  27. - ターゲットグループのアイドルタイムアウト値を伸ばす
Add Comment
Please, Sign In to add comment