On Wed, Nov 19, 2008 at 1:48 PM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>
> I have Apache proxying a publically accessible URL to Sage's localhost:
> 8000.
>
> I get html text rather than the Sage notebook. See here...
>
> http://seberino.org/calculus/sage
>
> Am I doing something wrong? Is this the way to make a Sage notebook
> publically available?
>
> chris
I think you need to modify your apache setup. Here's the httpd.conf file I use
for sagenb.org. Note below the
<Location />
DefaultType text/html
</Location>
which is very important -- without it I get the behavior you see.
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<VirtualHost *>
ServerName sagenb.org
ProxyPass / http://sagenb.org:8000/
ProxyPassReverse / http://sagenb.org:8000/
<Location />
DefaultType text/html
</Location>
</VirtualHost>
ServerName sagenb.org
--~--~---------~--~----~------------~-------~--~----~
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/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---