themes/grey/config.tpl
changeset 72 b8730fcd64a9
parent 50 1b4288399b1f
child 78 08f8a72b1f7b
equal deleted inserted replaced
71:8663af0e27c7 72:b8730fcd64a9
    62           <tr>
    62           <tr>
    63             <td class="row2" style="width: 50%;">
    63             <td class="row2" style="width: 50%;">
    64               <label for="chk_public"><b>Publicly accessible IP</b></label><br />
    64               <label for="chk_public"><b>Publicly accessible IP</b></label><br />
    65               <small>
    65               <small>
    66                 This controls whether Greyhound can be accessed from other computers on the network interface level. For the nerds, this
    66                 This controls whether Greyhound can be accessed from other computers on the network interface level. For the nerds, this
    67                 means that Greyhound will bind to 127.0.0.1 if unchecked or 0.0.0.0 if checked.
    67                 means that Greyhound will bind to ::1 or 127.0.0.1 if unchecked, and ::0 or 0.0.0.0 if checked.
    68               </small>
    68               </small>
    69             </td>
    69             </td>
    70             <td class="row1" style="width: 50%;">
    70             <td class="row1" style="width: 50%;">
    71               <input type="checkbox"
    71               <label><input type="checkbox"
    72                      name="public"
    72                      name="public"
    73                      id="chk_public"
    73                      id="chk_public"
    74                      {if $public}checked="checked"{/if}
    74                      {if $public}checked="checked"{/if}
    75                 />
    75                 />
       
    76               {if !$reboot_support}<span style="color: #ff5321;">Restart required</span>{/if}
       
    77               </label>
       
    78             </td>
       
    79           </tr>
       
    80           
       
    81           <!-- field - IPv6 -->
       
    82           <tr>
       
    83             <td class="row2" style="width: 50%;">
       
    84               <label for="chk_ipv6"><b>IPv6 support</b></label><br />
       
    85               <small>
       
    86                 If this is enabled, Greyhound will listen for IPv6 connections as well as IPv4 ones. Otherwise it will just listen for
       
    87                 IPv4 connections.
       
    88               </small>
       
    89             </td>
       
    90             <td class="row1" style="width: 50%;">
       
    91               <label>
       
    92               <input type="checkbox"
       
    93                      name="ipv6"
       
    94                      id="chk_ipv6"
       
    95                      {if $ipv6}checked="checked"{/if}
       
    96                 />
       
    97               {if !$reboot_support}<span style="color: #ff5321;">Restart required</span>{/if}
       
    98               </label>
       
    99             </td>
       
   100           </tr>
       
   101           
       
   102           <!-- field - allow multi-process -->
       
   103           <tr>
       
   104             <td class="row2" style="width: 50%;">
       
   105               <label for="chk_allow_fork"><b>Enable multi-process webserving</b></label><br />
       
   106               <small>
       
   107                 If this is enabled, Greyhound will use fork() to allow serving multiple HTTP requests at the same time. It is recommended
       
   108                 that you enable this to improve performance. In some rare cases, this results in a large number of zombie processes and
       
   109                 sometimes locks up the server, so disable this if you're experiencing problems.
       
   110               </small>
       
   111             </td>
       
   112             <td class="row1" style="width: 50%;">
       
   113               <label>
       
   114               <input type="checkbox"
       
   115                      name="allow_fork"
       
   116                      id="chk_allow_fork"
       
   117                      {if $allow_fork}checked="checked"{/if}
       
   118                 />
       
   119               {if !$reboot_support}<span style="color: #ff5321;">Restart required</span>{/if}
       
   120               </label>
    76             </td>
   121             </td>
    77           </tr>
   122           </tr>
    78           
   123           
    79           <!-- field - allow control -->
   124           <!-- field - allow control -->
    80           <tr>
   125           <tr>
    88             <td class="row1" style="width: 50%;">
   133             <td class="row1" style="width: 50%;">
    89               <input type="checkbox"
   134               <input type="checkbox"
    90                      name="allowcontrol"
   135                      name="allowcontrol"
    91                      id="chk_allowcontrol"
   136                      id="chk_allowcontrol"
    92                      {if $allowcontrol}checked="checked"{/if}
   137                      {if $allowcontrol}checked="checked"{/if}
    93                 />
       
    94             </td>
       
    95           </tr>
       
    96           
       
    97           <!-- field - allow multi-process -->
       
    98           <tr>
       
    99             <td class="row2" style="width: 50%;">
       
   100               <label for="chk_allow_fork"><b>Enable multi-process webserving</b></label><br />
       
   101               <small>
       
   102                 If this is enabled, Greyhound will use fork() to allow serving multiple HTTP requests at the same time. It is recommended
       
   103                 that you enable this to improve performance. In some rare cases, this results in a large number of zombie processes and
       
   104                 sometimes locks up the server, so disable this if you're experiencing problems.
       
   105               </small>
       
   106             </td>
       
   107             <td class="row1" style="width: 50%;">
       
   108               <input type="checkbox"
       
   109                      name="allow_fork"
       
   110                      id="chk_allow_fork"
       
   111                      {if $allow_fork}checked="checked"{/if}
       
   112                 />
   138                 />
   113             </td>
   139             </td>
   114           </tr>
   140           </tr>
   115           
   141           
   116           <!-- section - auth config -->
   142           <!-- section - auth config -->