Is it possible to run server-side JS in IIS7 using v8cgi via FastCGI? I already have FastCGI setup in IIS7 and know how to setup up PHP via FastCGI for IIS7 like this (http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-7/).
Asked
Active
Viewed 370 times
0
-
Did you figure this out? If so, can you point me in the right direction? – Jonathan May 19 '11 at 03:55
-
Unfortunately I gave up and did it in Apache. – Nic Bell Jun 09 '11 at 14:37
1 Answers
0
I have done a quick download of v8cgi. Basically, you can follow these steps:
- Deploy v8cgi somewhere on your machine
- Add a handler mapping (like for PHP), for example for *.js files
- Use the FastCgiModule for that mapping
- The executable will be "C:[Path to your v8cgi installation]\v8cgi.exe"
- The name can be anything you like
These steps should register v8cgi.exe to be executed by IIS and FastCGI.

maartenba
- 3,344
- 18
- 31
-
Hey I tried that but get a server error. C:\v8cgi\v8cgi.exe - The FastCGI process exited unexpectedly – Nic Bell Jan 10 '11 at 15:22
-