Project

General

Profile

Actions

Ajaxterm » History » Revision 1

Revision 1/9 | Next »
Anonymous, 2007-10-02 17:25
The article is very short but I think helpful for all those who get errors while trying ajaxterm. Excuse my english, its not my mother tongue.


= Setting up Ajaxterm with Lighttpd =

Introduction

Ajaxterm is a web based terminal for Unix/Linux written in python.

Installation

Ajaxterm can be downloaded on the [http://antony.lesuisse.org/qweb/trac/wiki/AjaxTerm official homepage] (open readme file for further steps) or installed out of the repository of your distribution.

Configuration

'''/etc/lighttpd/lighttpd.conf'''

Make sure mod-proxy is loaded:

{{{
server.modules = ( "mod_proxy" )
}}}

Configure module:

{{{
proxy.server = ( "/ajaxterm/" =>
(
( "host" => "127.0.0.1",
"port" => 8022
)
)
)
}}}

'''./conf-available/10-proxy.conf'''

{{{
#Your own proxy settings for ajaxterm

proxy.server = ( "/cgi/ajaxterm/" =>
(
( "host" => "127.0.0.1",
"port" => 8022
)
)
)
}}}

Files

Finally copy all files from the downloaded package (as described in the readme) or from ''/usr/share/ajaxterm/'' (if installed via aptitude etc) to ''/YourWebRoot/ajaxterm/''. Point your browser to http://yoursite/ajaxterm/ and login. Better use SSL for security reasons.

See Also

[wiki:Docs:SSL SSL Documentation]

Updated by Anonymous over 16 years ago · 1 revisions