13 lines
308 B
YAML
13 lines
308 B
YAML
- name: Install Apache OIDC module
|
|
apk:
|
|
name: apache-mod-auth-openidc
|
|
state: latest
|
|
update_cache: true
|
|
repository: 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
|
|
|