Hallo gibt,
Ich habe auf meinem Ajaxterm Ubuntu 9/04 Maschine, und es läuft ok, wenn ich:
Code:
http://localhost:8022/
in meinem Browser. Das Problem ist, dass ich wollte, um Zugang von somewere sonst über das Internet. Ich habe einige Anleitung und Hilfe im Zusammenhang mit dieser Seiten Problem, wie zB:
https: / / help.ubuntu.com / community / AjaxTerm ,
Ajaxterm - Wiki und auch die offizielle Hilfe-Seite, aber ich habe keine Lösung für das Problem. Nachdem Sie die Anleitungen Schritt für Schritt, das ist, wie meine
Code:
/etc/apache2/sites-available/default
sieht wie folgt aus:
HTML-Code:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
<VirtualHost *:443>
SetEnvIf Request_URI "^/u" dontlog
ErrorLog /var/log/apache2/error.log
Loglevel warn
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/apache.pem
ProxyRequests Off
<Proxy *>
AuthUserFile /srv/ajaxterm/.htpasswd
AuthName EnterPassword
AuthType Basic
require valid-user
Order Deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:8022/
ProxyPassReverse / http://localhost:8022/
</VirtualHost>
Er sagt in der Hilfe-Seite, dass jetzt, ich sollte. Aber, wenn ich in meinem Browser Test
Code:
http://localhost or my_ip
Das einzige, was ich sehe, ist das "Es funktioniert!" page.What habe ich falsch gemacht? Was ist zu ändern, zu arbeiten?
Danke,
Ady