mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Descriptions
This commit is contained in:
committed by
Shishir Mahajan
parent
9435013a2c
commit
38112e2dab
30
website/pages/docs/drivers/external/iis.mdx
vendored
30
website/pages/docs/drivers/external/iis.mdx
vendored
@@ -37,26 +37,24 @@ task "iis-test" {
|
||||
|
||||
The IIS task driver supports the following parameters:
|
||||
|
||||
- `path` - (Required) (Description).
|
||||
- `path` - (Required) The path of the website directory.
|
||||
|
||||
- `site_config_path` - (Optional) (Description).
|
||||
Defaults to (Default value).
|
||||
- `site_config_path` - (Optional) The path should point to a valid IIS Site XML that is generated from an export.
|
||||
|
||||
- `apppool_config_path` - (Optional) (Description).
|
||||
Defaults to (Default value).
|
||||
- `apppool_config_path` - (Optional) The path should point to a valid IIS Application Pool XML that is generated from an export.
|
||||
|
||||
- `apppool_identity`
|
||||
- `identity` - (Required) (Description).
|
||||
- `username` - (Optional) (Description). Defaults to (Default value).
|
||||
- `password` - (Optional) (Description). Defaults to (Default value).
|
||||
- `apppool_identity` - (Optional) `ApplicationPoolIdentity` (default). The identity which the Application Pool will run under.
|
||||
- `identity` - (Required) An identity is required to be set for Application Pools. Accepted inputs are `LocalService`, `LocalSystem`, `NetworkService`, `SpecificUser`, and `ApplicationPoolIdentity`.
|
||||
- `username` - (Optional) If `SpecificUser` was chosen, then provide the username.
|
||||
- `password` - (Optional) If `SpecificUser` was chosen, then provide the password.
|
||||
|
||||
- `bindings`
|
||||
- `hostname` - (Optional) (Description). Defaults to (Default value).
|
||||
- `ipaddress` - (Optional) (Description). Defaults to (Default value).
|
||||
- `resource_port` - (Optional) (Description). Defaults to (Default value).
|
||||
- `port` - (Optional) (Description). Defaults to (Default value).
|
||||
- `type` - (Optional) (Description). Defaults to (Default value).
|
||||
- `cert_hash` - (Optional) (Description). Defaults to (Default value).
|
||||
- `bindings` - (Optional) Bindings set here will be set for IIS.
|
||||
- `hostname` - (Optional) IIS hostname for a binding.
|
||||
- `ipaddress` - (Optional). `*` (default). IIS allows a binding to specify the IP Address being sent out.
|
||||
- `resource_port` - (Optional) Use a label from an established network stanza port. It is recommended to use this approach over using `port`.
|
||||
- `port` - (Optional) Specify a static port to use for the website. A port must be specified between `resource_port` or `port`. Ports set this way will not be recognized by nomad.
|
||||
- `type` - (Optional) Specificies which binding type IIS should use such as `http` or `https`.
|
||||
- `cert_hash` - (Optional) For SSL support, supply the cert hash here of a cert installed on the system.
|
||||
|
||||
## Networking
|
||||
|
||||
|
||||
Reference in New Issue
Block a user