You are here

function hostingService_http_apache::provisionProperties in Hosting 7.4

Return service properties to Provision CLI.

Return value

array

Overrides hostingService::provisionProperties

File

web_server/hosting_web_server.service.inc, line 58
Hosting service classes for the Hosting web server module.osting service classes for the Hosting web server module.

Class

hostingService_http_apache

Code

function provisionProperties() {
  return array(
    'http_port' => $this
      ->default_port(),
    'restart_command' => $this
      ->default_restart_cmd(),
  );
}