hosting.feature.nginx.inc in Hosting 7.4
Same filename and directory in other branches
Register the NGINX Hosting feature.
File
web_server/nginx/hosting.feature.nginx.incView source
<?php
/**
* @file
* Register the NGINX Hosting feature.
*/
/**
* Implements hook_hosting_feature().
*/
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;
}
Functions
Name | Description |
---|---|
hosting_nginx_hosting_feature | Implements hook_hosting_feature(). |