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

Support for installing/configuring MPM's. #25

Open
fintanmm opened this issue Jul 11, 2014 · 5 comments
Open

Support for installing/configuring MPM's. #25

fintanmm opened this issue Jul 11, 2014 · 5 comments

Comments

@fintanmm
Copy link
Contributor

Hi

Is there a chance of supporting the installation/configuration of prefork, worker or event mpm's? Thanks

fintan
@gravyboat
Copy link
Contributor

Aren't these just loaded in via a conf file update if you have them available dynamically?

@fintanmm
Copy link
Contributor Author

On Ubuntu you can only have one installed. It's more about being able to set the values in apache.conf

Also being able to adjust timeout & keepalive would be handy.

@aboe76
Copy link
Member

aboe76 commented Jun 19, 2015

see latest pull request,

@aboe76
Copy link
Member

aboe76 commented Nov 8, 2018

The TimeOut option isn't available in the config files so that one could be added like the keepalive settings which are available.

The mpm settings aren't in pillar.example: but they are available here are some example pillars:

mpm_prefork

apache:
  mpm:
    module: mpm_prefork
    params:
      start_servers: 2
      max_request_workers: 150
      min_spare_threads: 25
      max_spare_threads: 75
      thread_limit: 64
      threads_per_child: 25
      max_connections_per_child: 0

mpm_event

apache:
  mpm:
    module: mpm_event
    params:
      start_servers: 2
      max_request_workers: 150
      min_spare_threads: 25
      max_spare_threads: 75
      thread_limit: 64
      threads_per_child: 25
      max_connections_per_child: 0

mpm_worker

apache:
  mpm:
    module: mpm_worker
    params:
      start_servers: 2
      max_request_workers: 150
      min_spare_threads: 25
      max_spare_threads: 75
      thread_limit: 64
      threads_per_child: 25
      max_connections_per_child: 0

@alxwr
Copy link
Member

alxwr commented Nov 14, 2018

@aboe76 should we put those examples into pillar.example then?

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

No branches or pull requests

4 participants