On Tue, Jan 12, 2010 at 12:12 PM, tom <thomas.m.mo...@gmail.com> wrote: > Hi Kwankyu, > > Do you or anyone know of a recipe to configure a linux apache > httpd.conf file so that sage will run as a web server for the public? > We are looking to make something like the www.sagenb.org except for > our local group. >
Here is what www.sagenb.org uses in httpd.conf: ServerName boxen.math.washington.edu RewriteEngine On ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy> <VirtualHost *> RewriteEngine On ServerName www.sagenb.org ProxyPass / http://localhost:8888/ ProxyPassReverse / http://localhost:8888/ ProxyTimeout 300 DocumentRoot / <Location /> DefaultType text/html </Location> </VirtualHost>
-- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org