16 lines
476 B
YAML
16 lines
476 B
YAML
|
---
|
||
|
|
||
|
- name: Install required packages
|
||
|
dnf:
|
||
|
name: >
|
||
|
httpd, mod_jk-ap24
|
||
|
|
||
|
- name: Configure mod_jk.conf
|
||
|
command: mv /etc/httpd/conf.d/mod_jk.conf.sample /etc/httpd/conf.d/mod_jk.conf
|
||
|
|
||
|
- name: Configure workers.properties
|
||
|
command: mv /etc/httpd/conf.d/workers.properties.sample /etc/httpd/conf.d/workers.properties
|
||
|
|
||
|
- name: Configure uriworkermap.properties
|
||
|
command: mv /etc/httpd/conf.d/uriworkermap.properties.sample /etc/httpd/conf.d/uriworkermap.properties
|