Skip to content

Commit

Permalink
Update vhost.pp
Browse files Browse the repository at this point in the history
  • Loading branch information
virot authored Jun 10, 2024
1 parent e0be390 commit d8d392b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions manifests/vhost.pp
Original file line number Diff line number Diff line change
Expand Up @@ -1188,19 +1188,22 @@
# apache::vhost { 'wsgi.example.com':
# port => 80,
# docroot => '/var/www/pythonapp',
# wsgi_daemon_process => 'wsgi',
# wsgi_daemon_process_options =>
# { processes => 2,
# threads => 15,
# wsgi_daemon_process => {
# 'wsgi' => {
# processes => '2',
# threads => '15',
# display-name => '%{GROUP}',
# },
# 'foo' => {},
# },
# wsgi_process_group => 'wsgi',
# wsgi_script_aliases => { '/' => '/var/www/demo.wsgi' },
# wsgi_chunked_request => 'On',
# }
# ```
#
# @param wsgi_daemon_process_options
# Depricated, move to wsgi_daemon_process
# Sets up a virtual host with [WSGI](https://github.com/GrahamDumpleton/mod_wsgi) alongside
# wsgi_daemon_process, wsgi_process_group,
# wsgi_script_aliases and wsgi_pass_authorization.<br />
Expand Down

0 comments on commit d8d392b

Please sign in to comment.