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) #255

Closed
wants to merge 12 commits into from

Conversation

farisc0de
Copy link

@farisc0de farisc0de commented Jul 18, 2024

Added 3 new features

  1. Apache MPM Management

Example:

    apache_mpm: true

    apache_mpm_module: event

    apache_mpm_config:
      - threadlimit: "{{ apache_threadlimit }}"
        maxclients: "{{ apache_maxclients }}"
        startservers: "{{ apache_startservers }}"
        minsparethreads: "{{ apache_minsparethreads }}"
        maxsparethreads: "{{ apache_maxsparethreads }}"
        threadsperchild: "{{ apache_threadsperchild }}"
        maxrequestworkers: "{{ apache_maxrequestworkers }}"
        maxconnectionsperchild: "{{ apache_maxconnectionsperchild }}"
  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

@farisc0de farisc0de changed the title Added 2 new features (Apache MPM configuration, and Directory Listing and Index Management) Added 3 new features (Apache MPM configuration, and Directory Listing and Index Management, Extra Apache Packages) Jul 21, 2024
@farisc0de farisc0de closed this Jul 23, 2024
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