Rename roles for apache-php and apache-openidc

This commit is contained in:
Gašper Fele-Žorž 2025-10-16 11:37:26 +02:00
parent f33a0b8a21
commit d686ade847
3 changed files with 1210 additions and 0 deletions

View file

@ -0,0 +1,16 @@
- name: Enable testing repository
lineinfile:
path: /etc/apk/repositories
line: "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing"
- name: Create config file
template:
src: mod-auth-openidc.conf
dest: /etc/apache2/conf.d/mod-auth-openidc.conf
- name: Install Apache OIDC module
apk:
name: apache-mod-auth-openidc@testing
state: latest
update_cache: true