-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dedicated website profile for web + downloads
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# @summary A profile for the machines hosting the website and downloads | ||
# | ||
# @param stable | ||
# Latest release that users expect | ||
# | ||
# @param https | ||
# Whether to enable HTTPS. This is typically wanted but can only be enabled | ||
# in a 2 pass setup. First Apache needs to run for Letsencrypt to function. | ||
# Then Letsencrypt can be enabled. Also useful to turn off in test setups. | ||
class profiles::website ( | ||
String[1] $stable, | ||
Boolean $https = true, | ||
) { | ||
class { 'web': | ||
https => $https, | ||
} | ||
contain web | ||
|
||
contain web::vhost::downloads | ||
|
||
class { 'web::vhost::web': | ||
stable => $stable, | ||
} | ||
contain web::vhost::web | ||
} |