You are here

function hosting_nginx_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 web_server/nginx/hosting.feature.nginx.inc \hosting_nginx_hosting_feature()
  2. 7.3 web_server/nginx/hosting.feature.nginx.inc \hosting_nginx_hosting_feature()

File

web_server/nginx/hosting.feature.nginx.inc, line 3

Code

function hosting_nginx_hosting_feature() {
  $features['nginx'] = array(
    'title' => t('Nginx web servers'),
    'description' => t('Provide support for the NGINX web server.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_nginx',
    'group' => 'optional',
  );
  return $features;
}