-
-
Notifications
You must be signed in to change notification settings - Fork 875
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve nginx::package_source documentation
This is not a free-form String so prefer an enum and add some documentation about the supported values.
- Loading branch information
Showing
3 changed files
with
38 additions
and
2 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
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,18 @@ | ||
# Where to download NGINX from | ||
# | ||
# There are three versions of NGINX available: | ||
# * stable (`nginx` or `nginx-stable`); | ||
# * mainline (`nginx-mainline`); | ||
# * passenger (`passenger`). | ||
# | ||
# The mainline branch gets new features and bugfixes sooner but might introduce new bugs as well. Critical bugfixes are backported to the stable branch. | ||
# | ||
# In general, the stable release is recommended, but the mainline release is typically quite stable as well. | ||
# | ||
# In addition, Phusion provide packages for NGINX + Passenger (`passenger`). | ||
type Nginx::Package_source = Enum[ | ||
'nginx', | ||
'nginx-stable', | ||
'nginx-mainline', | ||
'passenger', | ||
] |