22 return hash(
"sha256", self::class);
27 return "Store configuration of Services/Http";
37 $common_config = $environment->getConfigFor(
"common");
40 new \ilSettingsFactoryExistsObjective()
46 $ini = $environment->getResource(Setup\Environment::RESOURCE_ILIAS_INI);
48 $ini->setVariable(
"server",
"http_path", $this->config->getHttpPath());
49 $ini->setVariable(
"https",
"auto_https_detect_enabled", $this->config->isAutodetectionEnabled() ?
"1" :
"0");
50 $ini->setVariable(
"https",
"auto_https_detect_header_name", $this->config->getHeaderName());
51 $ini->setVariable(
"https",
"auto_https_detect_header_value", $this->config->getHeaderValue());
55 throw new Setup\UnachievableException(
"Could not write ilias.ini.php");
58 $factory = $environment->getResource(Setup\Environment::RESOURCE_SETTINGS_FACTORY);
59 $settings =
$factory->settingsFor(
"common");
60 $settings->set(
"proxy_status", (
int) $this->config->isProxyEnabled());
61 $settings->set(
"proxy_host", $this->config->getProxyHost());
62 $settings->set(
"proxy_port", $this->config->getProxyPort());
getPreconditions(Setup\Environment $environment)
achieve(Setup\Environment $environment)
An environment holds resources to be used in the setup process.
__construct(\ilHttpSetupConfig $config)