On Jan 12, 3:19 pm, William Stein <wst...@gmail.com> wrote:
> 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 thewww.sagenb.orgexcept for
> > our local group.
>
> Here is whatwww.sagenb.orguses in httpd.conf:
>
> ServerName boxen.math.washington.edu
> RewriteEngine On
> ProxyRequests off
>
> <Proxy *>
> Order deny,allow
> Allow from all
> </Proxy>
>
> <VirtualHost *>
>   RewriteEngine On
>   ServerNamewww.sagenb.org
>   ProxyPass    /http://localhost:8888/
>   ProxyPassReverse /http://localhost:8888/
>   ProxyTimeout 300
>   DocumentRoot /
>         <Location />
>            DefaultType text/html
>         </Location>
> </VirtualHost>

Thanks for sending this.  All we had to do was start up the notebook
with a command like

notebook(address='our.ip.address.numbers', port=8000, accounts=True)

- Tom McTavish and Tom Morse.

-- 
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

Reply via email to