diff --git a/tasks/package.yml b/tasks/package.yml index 9fe81cd..2687b1a 100644 --- a/tasks/package.yml +++ b/tasks/package.yml @@ -22,6 +22,13 @@ apt: update_cache: yes +- name: Nginx | Modules | Unarchive GeoLiteCity files + shell: wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1\~18.04.23_amd64.deb -P /tmp/ + +- name: Install deb + command: apt install /tmp/libssl1.1_1.1.1-1ubuntu2.1~18.04.23_amd64.deb -y --allow-downgrades + become: true + - name: Nginx | Make sure nginx is installed (package) apt: pkg: "{{nginx}}" diff --git a/tasks/source.yml b/tasks/source.yml index 9aa68d3..0a5e413 100644 --- a/tasks/source.yml +++ b/tasks/source.yml @@ -13,6 +13,7 @@ - libpcre3 - libpcre3-dev - libssl-dev + - libssl1.1 - name: Nginx | Download the Nginx source release if not yet present get_url: