PHP Classes

File: source/application/views/panel/model/edit_server.php

Recommend this page to a friend!
  Classes of ask sa sa   Rimau waf   source/application/views/panel/model/edit_server.php   Download  
File: source/application/views/panel/model/edit_server.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Rimau waf
Application to configure Web server module options
Author: By
Last change:
Date: 1 year ago
Size: 2,116 bytes
 

Contents

Class file image Download
<div class="form-group">
    <input type="hidden" id="id2" value="<?=$server[0]['id']?>" />
    <label for="exampleInputEmail1">Domain</label>
    <input type="domain" class="form-control" id="domain" value="<?=$server[0]['hosts']?>" >
  </div>
  <div class="form-group">
    <label for="exampleInputPassword1">Port</label>
    <input type="number" class="form-control" id="port2" value="<?=$server[0]['port']?>">
  </div>
    <div class="form-group">
    <label for="exampleInputPassword1">Real Server</label>
    <input type="text" class="form-control" id="url2" value="<?=$server[0]['description']?>" >
  </div>
   <div class="form-group">
         <label for="sslengin"> SSLEngine </label>
         <select id="sslengin2">
          <option value="on">ON</option>
          <option value="off">OFF</option>
    </select>
     </div>
      <div class="form-group">
    <label for="SSLCertificateFile">SSLCertificateFile</label>
    <input type="text" class="form-control" id="SSLCertificateFile2" placeholder="/path/to/your_domain_name.crt">
  </div>
  <div class="form-group">
    <label for="SSLCertificateKeyFile">SSLCertificateKeyFile</label>
    <input type="text" class="form-control" id="SSLCertificateKeyFile2" placeholder="/path/to/your_private.key">
  </div>
 
  <div class="form-group">
    <label for="SSLCertificateChainFile">SSLCertificateChainFile</label>
    <input type="text" class="form-control" id="SSLCertificateChainFile" placeholder="/path/to/Digicertcx.crt">
  </div>
  <!--

    <div class="form-group">
    <label for="exampleInputPassword1">SSLCertificateFile </label>
    <input type="text" class="form-control" id="ssl2" value="<?=$server[0]['SSLCertificateFile']?>" >
  </div>
  -->

<?php
   
if ($server[0]['SSLEngine'] == 'on'){
       
$paparsslon = 'selected="selected"';
       
$paparssloff = '';
    }
    else{
       
$paparsslon = '';
       
$paparssloff = 'selected="selected"';
    }

?>
<!--

<div class="form-group">
    <label for="sslengin">SSLCertificateFile : </label>
    <select id="sslengin2">
          <option value="on" <?=$paparsslon?> >ON</option>
          <option value="off" <?=$paparssloff?> >OFF</option>
    </select>
  </div>
 -->