maybe you can use URL rewrite
在 2010-8-12 下午7:07,"zagor" <luca...@gmail.com>编写:
--
You received this message because you are subscribed to the
Orbited discussion group.
To post, send email to
<orbite...@googlegroups.com>
To unsubscribe, send email to
<orbited-user...@googlegroups.com>
For more options, visit
<http://groups.google.com/group/orbited-users>
Something like:
server {
listen 9000;
server_name localhost;
location /some_path {
# Orbited listens at port 9001
proxy_pass http://localhost:9001;
# Good settings for Orbited
proxy_buffering off;
tcp_nodelay on;
access_log off;
}
location / {
# Proxy to some other server?