1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<html>
<head>
<title>Cherokee Admin</title>
<link href="media/css/documentation.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>Cherokee Admin</h1>
<p>This section describes the Cherokee configuration admin interface. It is designed to
make the configuration of the cherokee web server really easy.</p>
<p>If cherokee is going to be running in the same host, just use:</p>
<pre class="literal-block">
$ cherokee-admin
</pre>
<p>And redirect your internet browser to 127.0.0.1:9090. By default, the interface will
be listening on port 9090 at 127.0.0.1. There are some advanced options thought:</p>
<ul class="simple">
<li><strong>-h</strong>: Show usage</li>
<li><strong>-a</strong>: Listen all interfaces</li>
<li><strong>-C</strong>: Use a different configuration file</li>
<li><strong>-d</strong>: Use a custom admin-interface path</li>
</ul>
<p>Example:</p>
<pre class="literal-block">
$ cherokee-admin -a -P 9091 -C /etc/cherokee/cherokee2.conf -d /path/to/svn/trunk/cherokee-admin/
</pre>
<div align="center" class="align-center"><img alt="Cherokee admin interface" class="align-center" src="media/images/admin_launch.png" /></div>
</body>
</html>
|