Ajaxterm in a website on apache


 
Thread Tools Search this Thread
Top Forums Web Development Ajaxterm in a website on apache
# 1  
Old 07-13-2009
Ajaxterm in a website on apache

Hi All,
I'm trying to get ajaxterm hosted on a website. The site is already running. I just want to add ajaxterm link to it with SSL of course. So far I've not been successful. I kinda got it running but with out SSL. Not good enough!
Also, I already have configured SSL and I can access some of the link via https. Anyhow this what I've been trying to do:
Code:
<VirtualHost term.mysite.org:80>
ServerName term.mysite.org
Redirect 301 / https://www.mysite.org/
CustomLog /var/log/term_access.log combined
ErrorLog /var/log/term_error.log

</VirtualHost>

<VirtualHost 172.XX.XX.100:443>
        DocumentRoot /xapache/htdocs/
        ServerName www.mysite.org
        ErrorLog /var/log/error.log

        SSLEngine on
        SSLProtocol all
        SSLVerifyClient none
        SSLCertificateFile /xapache/secure/mycert.pem
        SSLCertificateKeyFile /xapache/secure/mykey.pem
        SSLCACertificatePath /xapache/secure
        SSLCACertificateFile /xapache/secure/my_certificate.pem

ProxyRequests Off
<proxy *>
       AuthType Basic
       AuthName "Special Access"
       AuthUserFile /xapache/secure/luser
       Require user luser
       Order deny,allow
       Allow from all
</proxy>
ProxyPass / http://localhost:8022/
ProxyPassReverse / http://localhost:8022/
</VirtualHost>

Any help will be greatly appreciated.

Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Web Development

Apache website uri access

Hi i would like to grant access specific to one uri and rest of them should be denied. as follows: http://websitename/example user should be able to access htttp://websitename/other user should be denied (1 Reply)
Discussion started by: raghur77
1 Replies

2. Red Hat

Process not running: /opt/java15/jdk/bin/java -classpath /opt/apache/apache-ant-1.7.0-mod/lib/ant-la

Have no idea on what the below error message is: Process not running: /opt/java15/jdk/bin/java -classpath /opt/apache/apache-ant-1.7.0-mod/lib/ant-launcher.jar org.apache.tools.ant.launch.Launcher -buildfile build.xml dist. Any help? (3 Replies)
Discussion started by: gull05
3 Replies

3. Web Development

Apache module development on apache 2.2

Hi, I'm new to developing modules for Apache. I understand the basics now and can develop something simple which allows a 'GET' request to happen, but what I want to do is actually 'POST' information to my site. I know the basic POST Request works and I can see that it is post by looking at... (2 Replies)
Discussion started by: fishman2001
2 Replies

4. Shell Programming and Scripting

Map Apache PID to website

Hello, I have multiple apache websites running on the same server. How can I tell which apache PID is mapped to which website? www-data 5535 18638 0 08:46 ? 00:00:00 /usr/sbin/apache2 -k start www-data 5538 18638 0 08:46 ? 00:00:00 /usr/sbin/apache2 -k start www-data ... (1 Reply)
Discussion started by: kmaq7621
1 Replies

5. OS X (Apple)

AjaxTerm wont work on Mac OS X

just downloaded Ajaxterm-0.10 on my Mac 10.5.8 and after a ./ajaxterm.py i get: AjaxTerm at http://localhost:8022/ which looks ok but as soon i go to the website: ./ajaxterm.py:418: DeprecationWarning: 'I' format requires 0 <= number <= 4294967295 fcntl.ioctl(fd,... (0 Replies)
Discussion started by: berot3
0 Replies

6. UNIX for Dummies Questions & Answers

Ajaxterm works, but I can't get correct settings :(

Thank you for your time and help! :o Please if you could look over my settings and see what's going wrong.. I've read so much and tried soooo many things for 1 month now. I'm running: Linux Debian / apache2-mpm-prefork 2.2.9-10+lenny2 Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch... (0 Replies)
Discussion started by: mewbie
0 Replies

7. UNIX for Dummies Questions & Answers

help configuring Ajaxterm

Hello there, I installed Ajaxterm on my Ubuntu 9.04 machine, and it's running ok if I use :http://localhost:8022/ in my broswer. This is the problem , it can only be accessed localy. If I want to access it through internet from another computer, it fails. I've read the tutorials on how to... (1 Reply)
Discussion started by: wosis
1 Replies

8. UNIX for Dummies Questions & Answers

problem configuring Ajaxterm

Hello there, I installed Ajaxterm on my Ubuntu 9.04 machine, and it's running ok if I use : http://localhost:8022/ in my browser it works. The problem is that I wanted to be able to access it from somewhere else through the internet. I've read all the documentation and help that is available for... (1 Reply)
Discussion started by: wosis
1 Replies

9. HP-UX

to stop the website hosted in apache ux server

Hi, we have some websites in ux servers and need to stop those websites i.e when users try to acess those websites they should not able to see those websites. we have to ideas one is .htaccess. from this we can redirect to existing 404page. and not sure if we rediredt to non- exixting page in... (1 Reply)
Discussion started by: kishan
1 Replies
Login or Register to Ask a Question