We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa9828 commit a8b71e2Copy full SHA for a8b71e2
ansible/roles/ldap/handlers/main.yml
@@ -0,0 +1,7 @@
1
+---
2
+- name: Restart httpd
3
+ ansible.builtin.systemd:
4
+ name: httpd
5
+ state: restarted
6
+ tags:
7
+ - role::ldap
ansible/roles/ldap/tasks/main.yml
@@ -23,3 +23,20 @@
23
- Reload the firewall
24
tags:
25
- role::ldap
26
+
27
+- name: Increase apache process limit
28
+ ansible.builtin.copy:
29
+ content: |
30
+ <!-- Ansible managed -->
31
+ <!-- See https://stackoverflow.com/questions/22576807/scoreboard-is-full-not-at-maxrequestworkers -->
32
+ <IfModule mpm_event_module>
33
+ ServerLimit 48
34
+ </IfModule>
35
+ dest: /etc/httpd/conf.modules.d/99-mpm-server-limit.conf
36
+ owner: root
37
+ group: root
38
+ mode: "0444"
39
+ notify:
40
+ - Restart httpd
41
42
0 commit comments