Re: [racket] apache configuration for racket

2010-10-28 Thread Tony Garnock-Jones
Hi, Noel Welsh wrote: An alternative to CGI is to forward requests from Apache to the Racket web server. To do this in Apache you can setup a config like this: RewriteEngine On RewriteCond %{REQUEST_URI} ^/scheme/.* RewriteRule ^/scheme/(.*)$ http://localhost:8080/servlets/$1 [P] Personally,

Re: [racket] apache configuration for racket

2010-10-28 Thread Noel Welsh
On Sun, Oct 24, 2010 at 3:33 PM, scouic wrote: > Hi, > i have a local apache server (win$) and i would like to know how can i > configure it for that, when i'm connecting at 127.0.0.1, it launches a > Racket executable file, for example index.rkt (or index.exe) ? This is called CGI. It is not spe

Re: [racket] apache configuration for racket

2010-10-26 Thread Neil Van Dyke
scouic wrote at 10/26/2010 06:48 PM: nobody has an apache configuration to run Dr.racket files in localhost ? =/ There are several different ways to use Racket with Apache. If you are using the Racket Web Server, then you don't necessarily need Apache. However, if you want, you can make Apa

Re: [racket] apache configuration for racket

2010-10-26 Thread scouic
nobody has an apache configuration to run Dr.racket files in localhost ? =/ _ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/users

[racket] apache configuration for racket

2010-10-24 Thread scouic
Hi, i have a local apache server (win$) and i would like to know how can i configure it for that, when i'm connecting at 127.0.0.1, it launches a Racket executable file, for example index.rkt (or index.exe) ? actually, index.rkt is a simply webpage [example] (require web-server/sevlet /formlets /s