Dear All..

I have downloaded the centos  (linux) version of APE Server and
unzipped in the folder /etc/ape/

My domain name is  next.xyz.com . Which is running on port 80.
My ape.conf file is as below.

uid {
        # "aped" switch to this user/group if it run as root
        user = daemon
        group = daemon
}


Server {
        port = 6969
        daemon = no
        ip_listen = 0.0.0.0
        ip_local = 127.0.0.1
        domain = next.xyz.com
        rlimit_nofile = 10000
        pid_file = /var/run/aped.pid
}

Log {
        debug = 1
        use_syslog = 0
        syslog_facility = local2
        logfile = ./ape.log
}

JSONP {
        eval_func = Ape.transport.read
        allowed = 1
}

Config {
#relative to ape.conf
        modules = ../modules/lib/
        modules_conf = ../modules/conf/
}

and my APE_JSF config file is like this...

APE.Config.baseUrl = 'http://next.xyz.com/ape'; //APE JSF
APE.Config.domain = 'next.xyz.com';
APE.Config.server = 'ape.next.xyz.com:6969'; //APE server URL

and my httpd.conf is like this....

ServerAdmin [email protected]
        DocumentRoot /var/www/html/
        ServerName next.xyz.com
        ServerAlias ape.next.xyz.com
        ServerAlias *.ape.next.xyz.com
        ErrorLog logs/next.xyz.com-error.log
        CustomLog logs/next.xyz.com-access.log common

        JkMount /*.jsp loadbalancer
        JkMount /*.do loadbalancer
        JkMount /servlet/* loadbalancer

#       Options -Indexes FollowSymLinks MultiViews

        DirectoryIndex index.html index.jsp index.php
        <Directory /var/www/html/next/test/>
           Options -Indexes FollowSymLinks MultiViews
           AllowOverride all
           Order allow,deny
           allow from all
        </Directory>
       <Directory /var/www/html/ape/>  // This is my APE_JSF folder
path (instead of APE_JSF - I renamed it as ape)
           Options -Indexes FollowSymLinks MultiViews
           AllowOverride all
           Order allow,deny
           allow from all
        </Directory>


But I when I launch the test .. I am getting error like this..


Running test : Contacting APE Server
Can't contact APE Server. Please check the your APE Server is running
and the folowing url is pointing to your APE server : 
http://ape.next.xyz.com:6969
Something went wrong. If you can't fix it by yourself post a message
on the newsgroups with the output below or join our IRC channel


Please assist me where I am doing wrong. Thanks


-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to