Reply To: FirePlay Flash client for FireFly

#14130
Anonymous
Inactive

Getting the exact same results as toxic. In addition, I installed it on IIS and redirected it in IIS to port 81 and it works inside and outside the network. But when I try to go from 81 to 80 through Apache I get the “connecting to………”. I use this:

ServerName http://www.domain.com
ServerAlias intranet.domain.com

ProxyRequests Off

Options FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all

ProxyPass / http://intranet.differentdomain:81/
ProxyPassReverse / http://intranet.differentdomain:81/

for various IIS websites and they all work fine – except Fireplay.

Also tried:

ServerName http://www.domain.com
ServerAlias intranet.domain.com
ServerAdmin root@localhost
DocumentRoot c:/wamp/www/test

RewriteEngine On
RewriteRule ^/rsp/(.*)$ http://intranet.differentdomain:9999/rsp/$1 [P]
RewriteRule ^/login(.*)$ http://intranet.differentdomain:9999/login$1 [P]
RewriteRule ^/server-status(.*)$ http://intranet.differentdomain:9999/server-status$1 [P]
RewriteRule ^/databases/(.*)$ http://intranet.differentdomain:9999/databases/$1 [P]

Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all

for a direct conection from Apache to FirePlay… same thing “connecting to…….” Can anyone offer a suggestion on how to get this working?