📄 config.page
字号:
<?php/** * Configuration information * * @author Sam */require_once "WEB-INF/php/inc.php";?><h2>Server: <?= $g_server->Id ? $g_server->Id : "default" ?></h2><div class='section'><table class="data"> <tr title="The server id used when starting this instance of Resin, the value of '-server'."> <th>Server id:</th> <td><?= $g_server->Id ? $g_server->Id : '""' ?></td> </tr> <tr title="The configuration file used when starting this instance of Resin, the value of '-conf'."> <th>Version:</th> <td><?= $g_resin->Version ?></td> </tr> <tr title="The configuration file used when starting this instance of Resin, the value of '-conf'."> <th>Config file:</th> <td><?= $g_resin->ConfigFile ?></td> </tr> <tr title="The Resin home directory used when starting this instance of Resin. This is the location of the Resin program files."> <th>Resin home:</th> <td><?= $g_resin->ResinHome ?></td> </tr> <tr title="The resin root directory used when starting this instance of Resin. This is the root directory of the web server files."> <th>Resin root:</th> <td><?= $g_resin->RootDirectory ?></td> </tr> </table><?php echo "<h3>Environment</h3>\n"; $env = $g_server->Environment; echo "<table class='data'>\n" echo "<tr><td class='item' valign='top'>classpath "; echo "<a id='s_classpath' href=\"javascript:show('classpath');show('h_classpath');hide('s_classpath')\">[show]</a> "; echo "<a id='h_classpath' href=\"javascript:hide('classpath');show('s_classpath');hide('h_classpath');\" style='display:none'>[hide]</a>"; echo "</td>"; echo "<td>"; echo "<pre id='classpath' style='display:none'>"; foreach ($env->ClassPath as $item) { echo $item . "\n"; } echo "</pre>"; echo "</td></tr></table>";?><?php$thread_pool = $g_server->ThreadPool;?> <p/><h3>Threads</h3> <table class="data"> <tr> <td class='item'>thread-idle-min</td> <td><?= $thread_pool->ThreadIdleMin ?></td> </tr> <tr> <td class='item'>thread-idle-max</td> <td><?= $thread_pool->ThreadIdleMax ?></td> </tr> <tr> <td class='item'>thread-max</td> <td><?= $thread_pool->ThreadMax ?></td> </tr> </table></div><!-- TCP ports --><?php$ports = $g_server->Ports;if ($ports) {?><h2>TCP ports</h2><div class='section'><table class="data"><?php $count = 0; foreach ($ports as $port) {?> <tr> <td class='group' colspan='4'><?= $port->ProtocolName ?>://<?= $port->Address ? $port->Address : "*" ?>:<?= $port->Port ?></td> </tr> <tr> <td class='item'>accept-thread-min</td> <td><?= $port->AcceptThreadMin ?></td> <td class='item'>keepalive-max</td> <td><?= $port->KeepaliveMax ?></td> </tr> <tr> <td class='item'>accept-thread-max</td> <td><?= $port->AcceptThreadMax ?></td> <td class='item'>keepalive-select-max</td> <td><?= $port->KeepaliveSelectMax ?></td> </tr> <tr> <td class='item'>accept-listen-backlog</td> <td><?= $port->AcceptListenBacklog ?></td> <td class='item'>keepalive-timeout</td> <td><?= $port->KeepaliveTimeout ?></td> </tr> <tr> <td class='item'>connection-max</td> <td><?= $port->ConnectionMax ?></td> <td class='item'>socket-timeout</td> <td><?= $port->SocketTimeout ?></td> </tr> <tr> <td class='item'>keepalive-connection-time-max</td> <td><?= $port->KeepaliveConnectionTimeMax ?></td> <td class='item'>suspend-time-max</td> <td><?= $port->SuspendTimeMax ?></td> </tr><?php }}?></table></div><?phpecho "<h2>ClusterServer</h2>"echo "<div class='section'>";echo "<table class='data'>\n";$g_servers = $g_mbean_server->query("resin:*,type=ClusterServer");foreach ($g_servers as $srun) {?> <tr> <td class='group'><?= $srun->ClusterIndex + 1 ?>. <?= $srun->Name ? $srun->Name : "default" ?></td> <td class='group'>hmux://<?= $srun->Address ? $srun->Address : "*" ?>:<?= $srun->Port ?></td> </tr> <tr> <td class='item'>load-balance-connect-timeout</td> <td><?= $srun->ConnectTimeout ?></td> </tr> <tr> <td class='item'>load-balance-fail-recover-time</td> <td><?= $srun->RecoverTime ?></td> </tr> <tr> <td class='item'>load-balance-idle-time</td> <td><?= $srun->IdleTime ?></td> </tr> <tr> <td class='item'>load-balance-socket-timeout</td> <td><?= $srun->SocketTimeout ?></td> </tr> <tr> <td class='item'>load-balance-warmup-time</td> <td><?= $srun->WarmupTime ?></td> </tr> <tr> <td class='item'>load-balance-weight</td> <td><?= $srun->Weight ?></td> </tr><?php }?></table></div><!-- cluster ports --><?php$cluster = $g_server->Cluster;$cluster_name = empty($cluster->Name) ? "default" : $cluster->Name;echo "<h2>Cluster: $cluster_name</h2>";echo "<div class='section'>";$servers = $cluster->Servers;?><!-- host data --><?phpfunction sort_host($a, $b){ return strcmp($a->URL, $b->URL);} $hosts = $g_mbean_server->query("resin:*,type=Host");usort($hosts, "sort_host");foreach ($hosts as $host) { $hostName = empty($host->HostName) ? "default" : $host->HostName;?> <h2>Host <?= $host->URL ?></h2> <div class='section'> <table class='data'> <tr> <td class='item'>root-directory</td> <td><?= $host->RootDirectory ?></td> </tr> </table><?phpfunction sort_webapp($a, $b){ return strcmp($a->ContextPath, $b->ContextPath);}echo "<h3>WebApps</h3>\n";$webapps = $host->WebApps;usort($webapps, "sort_webapp");$count = 0;foreach ($webapps as $webapp) { $session = $webapp->SessionManager; $persistent_store = $session->PersistentStore;?> <p /> <table class='data' width='100%'> <tr><td class='group' colspan='2'> <?= empty($webapp->ContextPath) ? "/" : $webapp->ContextPath ?> </td> <tr> <td class='item' width='25%'>root-directory</td> <td> <?= $webapp->RootDirectory ?> </td> </tr> <tr> <td class='item'>session-timeout</td> <td> <?= $session->SessionTimeout / 1000 ?>s </td> </tr> <tr> <td class='item'>session-max</td> <td> <?= $session->SessionMax ?> </td> </tr><?php if ($persistent_store) { ?> <tr> <td class='item'>persistent-store</td> <td> <?= $persistent_store->StoreType ?> </td> </tr> <tr> <td class='item'>save-mode</td> <td> <?= $session->SaveMode ?> </td> </tr><?php } // persistent echo "</table>"; } // webapps echo "</div>"; } // hosts echo "</div>";?></table><?php display_footer("config.php"); ?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -