-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#6 Merge develop and fix test problem with Debian 9
- Loading branch information
Showing
10 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM geerlingguy/docker-debian9-ansible:latest | ||
|
||
# This is to override Testinfra issue with Debian 9 Docker image | ||
RUN touch /tmp/systemd | ||
RUN ln -s /tmp/systemd /sbin/init |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
nginx_extra_servers_path: "{{ playbook_dir }}/files" | ||
nginx_extra_servers_template_path: "{{ playbook_dir }}/templates" | ||
nginx_extra_servers_template_path: "{{ playbook_dir }}/templates/sites" | ||
|
||
web2_port: 8888 | ||
nginx_prometheus_metrics_enabled: false | ||
nginx_prometheus_metrics_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{ nginx_log_path }}/*.log { | ||
daily | ||
missingok | ||
rotate 7 | ||
size 500M | ||
compress | ||
notifempty | ||
create 644 {{ nginx_user }} {{ nginx_group }} | ||
sharedscripts | ||
postrotate | ||
[ -f /run/nginx/nginx.pid ] && kill -USR1 `cat /run/nginx/nginx.pid` | ||
endscript | ||
} |
File renamed without changes.