Hi,
I have a problem deploying websites.

My server is running apache 1.3.28 and jboss(tomcat) 3.2.3 and i would like to set 
them up together so user can access my website by doing a :
http://80.92.68.122

I have put into jboss/default/deploy/ the .war of the website: ac.war

In a brother : http://80.92.68.122:8080/ac/index.jsp make my website appear.
So i figure tomcat is working fine on the default port.

But when i do a  http://80.92.68.122 apache says: You don't have permission to access 
/ on this server

And when i do a http://80.92.68.122/index.jsp Tomcat says: "Status report: No Context 
configured to process this request".

Here is the config i made:

httpd.conf:

<VirtualHost 80.92.68.122>
DocumentRoot "/usr/local/apache/htdocs"
ServerName 80.92.68.122
DirectoryIndex index.html index.htm index.php index.jsp
<Directory "/usr/local/apache/htdocs">
Options ExecCgi MultiViews FollowSymlinks
AllowOverride none
Order allow,deny
Allow from all
AddHandler cgi-script .pl .cgi

#is it necessary?
#<Location "/usr/local/jboss/server/default/deploy/ac/WEB-INF/">
#AllowOverride None
#deny from all
#
JKmount /*.jsp AC


JkWorkersFile /usr/local/apache/conf/workers.properties
JkLogFile /var/log/httpd/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories

my workers.properties:
worker.list= AC
worker.AC.type=ajp13
worker.AC.host=localhost
worker.AC.port=8009
worker.AC.socket_timeout=600

jboss-service.xml:

 <!-- A AJP 1.3 Connector on port 8009 -->
               

Thanks for your help

Julien


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3838981#3838981

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3838981


-------------------------------------------------------
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to