Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update from upstream #1

Merged
merged 12 commits into from
Jan 18, 2020
Next Next commit
Explicitly setting the nginx configuration file in (jdauphant#223)
the "check nginx configuration" handler.
  • Loading branch information
timorunge authored and jdauphant committed Jun 15, 2018
commit 01c2e518b53b87d1c13aebf902087737a1109c5f
2 changes: 1 addition & 1 deletion handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- reload nginx - after config check

- name: check nginx configuration
command: "{{ nginx_binary_name }} -t"
command: "{{ nginx_binary_name }} -t -c {{ nginx_conf_dir }}/nginx.conf"
register: result
changed_when: "result.rc != 0"
check_mode: no
Expand Down