You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure this is a problem with Ajaxterm, but I don't know where else to ask for support for this problem. Ajaxterm works perfectly when I connect from localhost. Connecting remotely using the Apache reverse proxy does not work. All I get is a blank page, though it seems to connect to Ajaxterm, because the title of the page is 'Ajaxterm'. I have used Apache SSL for a long time now, so the only thing I changed for proxy setup is the following:
If you look in your server logs, you will probably find undefined references when it looks for these files. I guess you could try hosting them locally, but what I did instead was add a leading '/' to the href/src and then used mod_proxy_html to rewrite. The Apache config (security bits missing is)
I'm not sure this is a problem with Ajaxterm, but I don't know where else to ask for support for this problem. Ajaxterm works perfectly when I connect from localhost. Connecting remotely using the Apache reverse proxy does not work. All I get is a blank page, though it seems to connect to Ajaxterm, because the title of the page is 'Ajaxterm'. I have used Apache SSL for a long time now, so the only thing I changed for proxy setup is the following:
ProxyRequests Off
<Proxy *>
AuthType Basic
AuthName "Enter username/password"
AuthUserFile /etc/httpd/conf/.htpasswd
Require valid-user
ProxyPass /term http://localhost:8022/
ProxyPassReverse /term http://localhost:8022/
The text was updated successfully, but these errors were encountered: