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 - stretch # Debian 9 Stretch
- buster # Debian 10 Buster - buster # Debian 10 Buster
- bullseye # Debian 11 Bullseye - bullseye # Debian 11 Bullseye
- bookworm # Debian 12 Bookworm
- name: Ubuntu - name: Ubuntu
versions: versions:
- xenial # Ubuntu 16.04 LTS Xenial Xerus - xenial # Ubuntu 16.04 LTS Xenial Xerus

View File

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

View File

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