Skip to content

Commit d7471d2

Browse files
author
Slavey Karadzhov
committed
Fixes vhostValidateTemplate command.
Related to zend-patterns/ZendServerSDK#88.
1 parent 39eaffc commit d7471d2

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

config/api/version-1.06.config.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
'This action is similar to vhostAdd, it adds a new vhost which is intended to be secure using SSL. Receives name, port, template and certificate paths and returns a single virtual host element with the same information.',
8686
array('--name', 'Name of virtual host.'),
8787
array('--port', 'Port of virtual host.'),
88-
array('--sslCertificatePath', 'File path to locate the SSL certificate file.'),
89-
array('--sslCertificateKeyPath', 'File path to locate the SSL public key file.'),
90-
array('--sslCertificateChainPath', 'Full file path to the SSL chain file.'),
88+
array('--sslCertificatePath', 'File path to locate the SSL certificate file. The file should be present on the machine where Zend Server is running.'),
89+
array('--sslCertificateKeyPath', 'File path to locate the SSL public key file. The file should be present on the machine where Zend Server is running.'),
90+
array('--sslCertificateChainPath', 'Full file path to the SSL chain file. The file should be present on the machine where Zend Server is running.'),
9191
array('--template', 'Template of the virtual host settings according to the web server configuration options. Or an absolute path to a local template vhost file. A local template vhost file is a file that should be present on the machine where zs-client is running.'),
9292
array('--forceCreation', 'Force the creation of a virtual host, even if it fails syntax validation. Default: FALSE'),
9393
//array('Example:','configurationExport --directivesBlacklist="zend_optimizerplus.blacklist_filename,pgsql.auto_reset_persistent"'),
@@ -131,9 +131,9 @@
131131
array('--template', 'New vhost template of virtual host settings. Or an absolute path to a local template vhost file. A local template vhost file is a file that should be present on the machine where zs-client is running.'),
132132
array('--forceCreate', 'Force edit of the virtual host template even if any errors are detected.'),
133133
array('--sslEnabled', 'Indicates if the provided template to be used is SSL template. Default value is FALSE.'),
134-
array('--sslCertificatePath', 'File path to locate the SSL certificate file'),
135-
array('--sslCertificateKeyPath', 'File path to locate the SSL key file.'),
136-
array('--sslCertificateChainPath', 'File path to locate the SSL chain file.'),
134+
array('--sslCertificatePath', 'File path to locate the SSL certificate file. The file should be present on the machine where Zend Server is running.'),
135+
array('--sslCertificateKeyPath', 'File path to locate the SSL key file. The file should be present on the machine where Zend Server is running.'),
136+
array('--sslCertificateChainPath', 'File path to locate the SSL chain file. The file should be present on the machine where Zend Server is running.'),
137137
array('--sslAppName', 'Application name for SSL (IBMI only).'),
138138
//array('Example:','configurationExport --directivesBlacklist="zend_optimizerplus.blacklist_filename,pgsql.auto_reset_persistent"'),
139139
)
@@ -175,7 +175,7 @@
175175
),
176176
'vhostValidateTemplate' => array (
177177
'options' => array (
178-
'route' => 'vhostValidateTemplate --name= --port= --template= [--sslEnabled=] [--sslCertificatePath=] --sslCertificateKeyPath [--sslChainPath=]',
178+
'route' => 'vhostValidateTemplate --name= --port= --template= [--sslEnabled=] [--sslCertificatePath=] [--sslCertificateKeyPath=] [--sslChainPath=]',
179179
'defaults' => array (
180180
'controller' => 'webapi-api-controller',
181181
'action' => 'vhostValidateTemplate',
@@ -188,9 +188,9 @@
188188
array('--port', 'Port of virtual host.'),
189189
array('--template', 'Template text to be validated. Or an absolute path to a local template vhost file. A local template vhost file is a file that should be present on the machine where zs-client is running.'),
190190
array('--sslEnabled', 'Indicates if the provided template to be used is SSL template.'),
191-
array('--sslCertificatePath', 'File path to locate the SSL certificate file.'),
192-
array('--sslCertificateKeyPath', 'File path to locate the SSL public key file.'),
193-
array('--sslCertificateChainPath', 'Full file path to the SSL chain file.'),
191+
array('--sslCertificatePath', 'File path to locate the SSL certificate file. The file should be present on the machine where Zend Server is running.'),
192+
array('--sslCertificateKeyPath', 'File path to locate the SSL public key file. The file should be present on the machine where Zend Server is running.'),
193+
array('--sslCertificateChainPath', 'Full file path to the SSL chain file. The file should be present on the machine where Zend Server is running.'),
194194
//array('Example:','configurationExport --directivesBlacklist="zend_optimizerplus.blacklist_filename,pgsql.auto_reset_persistent"'),
195195
)
196196

0 commit comments

Comments
 (0)