Server IP : 192.158.238.246 / Your IP : 3.135.182.75 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/local/lsws/add-ons/cpanel/lsws_whm_plugin/View/Tpl/ |
Upload File : |
<?php use \LsPanel\View\Model\QuicCloudIpsViewModel as ViewModel; $iconDir = $this->viewModel->getTplData(ViewModel::FLD_ICON_DIR); $quicCloudIps = $this->viewModel->getTplData(ViewModel::FLD_QUIC_CLOUD_IPS); ?> <div id="heading"> <h1> <?php if ( $iconDir != '' ) : ?> <span> <!--suppress HtmlUnknownTarget --> <img src="<?php echo $iconDir; ?>/quicCloudIps.svg" alt="restart_detached_php_icon" /> </span> <?php endif; ?> QUIC.cloud IPs </h1> </div> <div> <p> The following list of QUIC.cloud IPs should be <a href="https://quic.cloud/docs/cdn/setup/adding-quic-cloud-ips-to-allowlist/" target="_blank" rel="noopener noreferrer" > whitelisted by your server's firewall </a> to prevent issues when communicating with QUIC.cloud through the LiteSpeed Cache for WordPress plugin (Image Optimization, API calls, etc). </p> <p> <b>*</b> Listed IPs are retrieved in real time and may change in the future. </p> <br /> <p style="border: 1px solid; width: 150px; padding: 1em;"> <?php foreach ( $quicCloudIps as $ip ) { echo htmlspecialchars($ip) . '<br />'; } ?> </p> </div> <?php $d = array( 'back' => 'Back', ); $this->loadTplBlock('ButtonPanelBackNext.tpl', $d);