Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 3 new features (Apache MPM configuration, and Directory Listing and Index Management, Extra Apache Packages) #258

Open
wants to merge 19 commits into
base: master
Choose a base branch
from

Conversation

farisc0de
Copy link

Added 3 new features

  1. Apache MPM Management

Example:

    apache_mpm: true

    apache_mpm_module: prefork

    apache_mpm_config:
      - name: StartServers
        value: "{{ apache_startservers }}"
      - name: MinSpareServers
        value: "{{ apache_minspareservers }}"
      - name: MaxSpareServers
        value: "{{ apache_maxspareservers }}"
      - name: MaxRequestWorkers
        value: "{{ apache_maxrequestworkers }}"
      - name: MaxConnectionsPerChild
        value: "{{ apache_maxconnectionsperchild }}"
      - name: MaxClients
        value: "{{ apache_maxclients }}"
  1. Directory Listing and Index settings

Example:

        apache_directory_index: "index.php"
        apache_directory_list:
          - path: "{{ apache_root_path }}/{{ project_name }}/public/wp-content"
            options: "FollowSymLinks"
  1. Extra Apache Packages

Example:

apache_packages_extra:
- package: libapache2-mod-security2
  state: present

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant