-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Feature/master/passengerbaseuri #1152
Feature/master/passengerbaseuri #1152
Conversation
| @@ -385,6 +386,13 @@ | |||
| } | |||
| } | |||
|
|
|||
| # Load mod_passenger if needed and not yet loaded | |||
| if $passenger_base_uris { | |||
| if ! defined(Class['apache::mod::passenger']) { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need to have this check, include ::apache::mod::passenger will just work.
|
@aronymous thanks for the contribution! This needs a rebase, squash, and tests before this can be merged. |
1a66e50
to
b300a08
Compare
|
I added tests and made the changes suggested. Hope I did it right. Thanks |
|
Hi @aronymous , This still needs a squash, there is some pretty good documentation here |
This adds a varaible and template block for using PassengerBaseURI in the vhost
b300a08
to
9367580
Compare
| @@ -386,6 +387,11 @@ | |||
| } | |||
| } | |||
|
|
|||
| # Load mod_passenger if needed and not yet loaded | |||
| if $passenger_base_uris { | |||
| include ::apache::mod::passenger | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4 spaces should be 2 space indentation.
Feature/master/passengerbaseuri
|
Thanks @aronymous |
(MODULES-2188) Add support for PassengerBaseURI in Apache