2

Mac OS X10.6.4とApache2.2.14を実行しているMacでAJAXプッシュエンジン(APE)をセットアップしようとしています。

APEサーバーを実行すると、次のように出力されます。

Hristo$ sudo ./aped
Password:
   _   ___ ___ 
  /_\ | _ \ __|
 / _ \|  _/ _| 
/_/ \_\_| |___|
AJAX Push Engine

Bind on port 6969

Version : 1.00
Build   : Dec  7 2009 23:05:18
Author  : Weelya (contact@weelya.com)

[Module] [spidermonkey] Loading module : Javascript embeded (0.01) - Anthony Catel
[JS] Loading script ../scripts/framework/mootools.js
[JS] Loading script ../scripts/framework/Http.js
[JS] Loading script ../scripts/framework/userslist.js
[JS] Loading script ../scripts/utils/utils.js
[JS] Loading script ../scripts/commands/proxy.js
[JS] Loading script ../scripts/commands/inlinepush.js
[JS] Loading script ../scripts/examples/nickname.js
[JS] Loading script ../scripts/examples/move.js
[JS] Loading script ../scripts/utils/checkTool.js

ape.conf見た目は次のとおりです。

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


Server {
        port = 6969
        daemon = no
        ip_listen = 127.0.0.1
        domain = localape
        rlimit_nofile = 10000
        pid_file = /var/run/aped.pid
}

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

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

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

# Proxy section is used to resolve hostname and allow access to a IP:port (Middleware-TCPSocket feature)

#Proxy {
#       id = freenode
#       host = irc.freenode.net
#       port = 6667
#       readonly = false
#}

...そしてファイル内の仮想ホストのものはhttpd-vhosts.conf次のようになります:

#
# Virtual Hosts
#

<Directory /Library/WebServer/Documents/APE>
   Order Deny,Allow
   Allow from all
</Directory>

#
# Use name-based virtual hosting.
#
NameVirtualHost *:80

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot "/Library/WebServer/Documents"
</VirtualHost>

<VirtualHost *:80>
   Servername localape
   ServerAlias ape.localape
   ServerAlias *.ape.localape

   DocumentRoot "/Library/WebServer/Documents/APE"
</VirtualHost>

でテストファイルを実行すると/Tools/Check/index.html、次のエラーが発生するAPEサーバーに到達するまでテストに合格します。

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.localape: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

これを修正する方法について何かアイデアはありますか?

ありがとう。

4

1 に答える 1

2

私はそれを考え出した。問題の一部は、私が接続していたネットワークでは、この種のことを実行できなかったことです。通常のネットワークに移動したら、変更を加えて機能します。

以下は、APEの構成ファイルです。ここで行った唯一の変更は、最初の2つのセクションにあります。

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


Server {
        port = 6969
        daemon = no
        ip_listen = 127.0.0.1
        domain = local.ape-project.org
        rlimit_nofile = 10000
        pid_file = /var/run/aped.pid
}

httpd-vhosts.conf次に、にある仮想ホストファイルのいくつかを変更しました/etc/apache2/extra/。これはどのように見えるかです:

<Directory /Library/WebServer/Documents/APE>
   Order Deny,Allow
   Allow from all
</Directory>

NameVirtualHost *:80

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot "/Library/WebServer/Documents"
</VirtualHost>

<VirtualHost *:80>
   Servername local.ape-project.org
   ServerAlias ape.local.ape-project.org
   ServerAlias *.ape.local.ape-project.org
   DocumentRoot "/Library/WebServer/Documents/APE"
</VirtualHost>

つまり、にあるApache構成ファイルに仮想ホストを含​​める必要がありhttpd.confます/etc/apache2。これに対して、ファイルの下部にある次の行のコメントを解除しました。

# Virtual hosts
Include /private/etc/apache2/extra/httpd-vhosts.conf

最後に、次のファイルに追加local.ape-project.orgしました:hosts/etc/

127.0.0.1       local.ape-project.org

次のソースを使用してガイドしました:http://www.ape-project.org/wiki/index.php/Advanced_APE_configuration

お役に立てれば。

于 2010-07-15T14:00:12.237 に答える