You are here

hosting_nginx_ssl.service.inc in Hosting 6.2

File

web_server/nginx/ssl/hosting_nginx_ssl.service.inc
View source
<?php

module_load_include('service.inc', 'hosting_web_server');
module_load_include('service.inc', 'hosting_ssl');
class hostingService_http_nginx_ssl extends hostingService_http_ssl {
  public $type = 'nginx_ssl';
  protected $has_restart_cmd = TRUE;
  function default_restart_cmd() {
    return "sudo /etc/init.d/nginx reload";
  }

}

Classes