123456789101112131415161718192021222324252627282930313233 |
- #{{ ansible_managed }}
- user {{ nginx_user }} {{ nginx_group }};
- worker_processes {{ nginx_worker_processes }};
- {% if nginx_pid_file %}
- pid {{ nginx_pid_file }};
- {% endif %}
- worker_rlimit_nofile {{ nginx_worker_rlimit_nofile }};
- events {
- {% for v in nginx_events_params %}
- {{ v }};
- {% endfor %}
- }
- http {
- include {{ nginx_conf_dir }}/mime.types;
- default_type application/octet-stream;
- {% for v in nginx_http_params %}
- {{ v }};
- {% endfor %}
- include {{ nginx_conf_dir }}/conf.d/*.conf;
- include {{ nginx_conf_dir }}/sites-enabled/*;
- }
- {% if nginx_daemon_mode == "off" %}
- daemon off;
- {% endif %}
|