Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Kotov 8677fabf60
Add package "libnginx-mod-stream" 2024-01-04 06:49:38 +04:00
Alex Kotov da39b240d1
GeoIP2 auto_reload default 2023-08-30 17:32:15 +04:00
4 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@
name:
- libnginx-mod-http-geoip
- libnginx-mod-http-geoip2
- libnginx-mod-stream
- nginx
- name: Create directories for Nginx configuration

View File

@ -6,6 +6,7 @@
name:
- libnginx-mod-http-geoip
- libnginx-mod-http-geoip2
- libnginx-mod-stream
- nginx
- nginx-common
- nginx-core

View File

@ -6,6 +6,7 @@
name:
- libnginx-mod-http-geoip
- libnginx-mod-http-geoip2
- libnginx-mod-stream
- nginx
- nginx-common
- nginx-core

View File

@ -11,7 +11,7 @@ geoip_city {{ nginx__geoip_city }};
{% for geoip2 in nginx__geoip2 %}
geoip2 {{ geoip2.file }} {
{% if geoip2.auto_reload %}
{% if geoip2.auto_reload | default(False) %}
auto_reload {{ geoip2.auto_reload }};
{% endif %}
{% for map in geoip2.maps %}