From 34e401784b011c4573e1d23809b7156f10a62843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=20Nam=C3=A8che?= Date: Wed, 4 Feb 2026 12:27:42 +0300 Subject: [PATCH] Clean old GeoIP implementation --- seb4itik/byow/roles/caddy/tasks/caddy_config.yml | 9 --------- seb4itik/byow/roles/caddy/templates/GeoIP.conf | 3 --- 2 files changed, 12 deletions(-) delete mode 100644 seb4itik/byow/roles/caddy/templates/GeoIP.conf diff --git a/seb4itik/byow/roles/caddy/tasks/caddy_config.yml b/seb4itik/byow/roles/caddy/tasks/caddy_config.yml index dfb6af6..13f359c 100644 --- a/seb4itik/byow/roles/caddy/tasks/caddy_config.yml +++ b/seb4itik/byow/roles/caddy/tasks/caddy_config.yml @@ -76,15 +76,6 @@ notify: - "Restart Caddy" -# - name: Generate GeoIP config file -# when: "caddy_geoip_account_id != None and caddy_geoip_license_key != None" -# ansible.builtin.template: -# src: "templates/GeoIP.conf" -# dest: "/etc/GeoIP.conf" -# mode: "0640" -# notify: -# - "Update GeoIP databases" - - name: Enable and start Caddy ansible.builtin.service: name: "{{ caddy_my_name }}" diff --git a/seb4itik/byow/roles/caddy/templates/GeoIP.conf b/seb4itik/byow/roles/caddy/templates/GeoIP.conf deleted file mode 100644 index dd9e813..0000000 --- a/seb4itik/byow/roles/caddy/templates/GeoIP.conf +++ /dev/null @@ -1,3 +0,0 @@ -AccountID {{ caddy_geoip_account_id }} -LicenseKey {{ caddy_geoip_license_key }} -EditionIDs {{ caddy_geoip_edition_ids }}