You are here

function hosting_nginx_ssl_hosting_feature in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 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()

Implements hook_hosting_feature().

File

web_server/nginx/ssl/hosting.feature.nginx_ssl.inc, line 10
Register the NGINX SSL Hosting feature.

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. (LEGACY, see hosting_https)'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_nginx_ssl',
    'group' => 'optional',
  );
  return $features;
}