Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Kotov 5b60deaef5
Fix streams 2023-08-12 21:18:43 +04:00
Alex Kotov 9990663e3a
Add more platforms 2023-08-12 21:15:01 +04:00
3 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,7 @@ galaxy_info:
- stretch # Debian 9 Stretch
- buster # Debian 10 Buster
- bullseye # Debian 11 Bullseye
- bookworm # Debian 12 Bookworm
- name: Ubuntu
versions:
- xenial # Ubuntu 16.04 LTS Xenial Xerus

View File

@ -32,8 +32,8 @@
- name: Install Nginx config
notify: nginx | Restart Nginx
copy:
src: 'files/nginx.conf'
template:
src: 'templates/nginx.conf'
dest: '{{ nginx__dir_etc }}/nginx.conf'
mode: 'u=rw,go=r'
owner: root

View File

@ -7,10 +7,12 @@ events {
worker_connections 768;
# multi_accept on;
}
{% if nginx__stream %}
stream {
include /etc/nginx/stream.conf;
}
{% endif %}
http {
##