Installing WebShell

Ajaxterm kann mithilfe folgender Anleitung Installiert werden, Apache mit ssl Konfiguriert und mittels ProxyMod auf den Ajaxterm Port umgeleitet werden.

  1. wget http://ftp.de.debian.org/debian/pool/main/a/ajaxterm/ajaxterm_0.9-2_all.deb
  2. dpkg -i ajaxterm_0.9-2_all.deb

Aktiviere das SSL und das Proxy Modul für Apache2

  1. a2enmod ssl
  2. a2enmod proxy

Apache2 config eintrag

  1. <VirtualHost x.x.x.x:443>
  2.        ServerName webshell.server.tld
  3.        SSLEngine On
  4.        SSLCertificateKeyFile ssl/apache.pem
  5.        SSLCertificateFile ssl/apache.pem
  6.  
  7.        ProxyRequests Off
  8.        <Proxy *>
  9.                AuthType Basic
  10.                AuthName "Restricted Access"
  11.                AuthUserFile /var/www/.htpasswd
  12.                Require valid-user
  13.                Order deny,allow
  14.                Allow from all
  15.        </Proxy>
  16.        ProxyPass / http://localhost:8022/
  17.        ProxyPassReverse / http://localhost:8022/
  18. </VirtualHost>

Trackback URL for this post:

http://www.2030.tk/trackback/110

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Use <fn>...</fn> to insert automatically numbered footnotes.
  • You can use the <go> tags just like the <a> for nicer urls.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>. Beside the tag style "<foo>" it is also possible to use "[foo]".
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.