You are here

function hosting_nginx_ssl_hosting_feature in Hosting 6.2

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

File

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

Code

function hosting_nginx_ssl_hosting_feature() {
  $features['nginx_ssl'] = array(
    'title' => t('Nginx SSL support'),
    'description' => t('Provide support for the NGINX web server with SSL functionality.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_nginx_ssl',
    'group' => 'optional',
  );
  return $features;
}