default.j2 551 B

1234567891011121314151617
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. #
  3. # {{ ansible_controlled }}
  4. #
  5. {% endif %}
  6. # Note: You may want to look at the following page before setting the ULIMIT.
  7. # # http://wiki.nginx.org/CoreModule#worker_rlimit_nofile
  8. # # Set the ulimit variable if you need defaults to change.
  9. # # Example: ULIMIT="-n 4096"
  10. # #ULIMIT="-n 4096"
  11. ulimit -Hn 65536
  12. ulimit -Sn 65536
  13. #
  14. # # Define the stop schedule for nginx
  15. # # see the start-stop-daemon --retry documentation for more information
  16. # #
  17. # #STOP_SCHEDULE="QUIT/5/TERM/5/KILL/5"