/
home
/
clp
/
htdocs
/
app
/
files
/
src
/
Site
/
up file
home
<?php namespace App\Site; class ReverseProxySite extends Site { private const TYPE = "\x72\145\166\x65\x72\163\x65\55\160\x72\x6f\170\171"; protected string $type = self::TYPE; private ?string $reverseProxyUrl = null; public function setReverseProxyUrl(?string $reverseProxyUrl) : void { $this->reverseProxyUrl = $reverseProxyUrl; } public function getReverseProxyUrl() : ?string { return $this->reverseProxyUrl; } }