Questions tagged [iisnode]

iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.

Useful Links

400 questions
0
votes
2 answers

Node.js on Windows Azure IIS using IISNode: How to set startup file?

I am using IISNode to server Node.js files over IIS on Windows Azure. But when I try to access the server path using http://127.0.0.1/mysite/node/ its throwing the following error iisnode encountered an error when processing the request. HRESULT:…
Temp O'rary
  • 5,366
  • 13
  • 49
  • 109
0
votes
1 answer

IISNode not picking up NODE_ENV

I have a NodeJS apps hosted on a server behind IISNode. I have set the NODE_ENV in the web.config and in the iisnode.yml node_env: staging but my application does not seem to pick it up. It picks up the values that I…
mithun_daa
  • 4,334
  • 5
  • 38
  • 50
0
votes
1 answer

How to fine-tune NodeJS server deployed to Azure WebApp for massive load

I deployed node js server to Azure WebApp, and it worked fine. But, I see that sometime the response time is very slow. Also, I see that somewhere above 500 request/second the server start to fail handling request, and I see it use only 15% CPU.…
Omer Levi Hevroni
  • 1,935
  • 1
  • 15
  • 33
0
votes
1 answer

node + socket.io fails on 'listen' Azure deployment

Nodejs server works like a champ locally. When deployed to Azure Web App, it fails with server error: isnode encountered an error when processing the request. HRESULT: 0x6d HTTP status: 500 HTTP subStatus: 1013 HTTP reason: Internal Server Error…
TomO
  • 458
  • 2
  • 9
  • 20
0
votes
1 answer

Running nodejs/MEAN app on IIS virtual directory setup

I am running my MEAN app on windows. So far I was running the application on Non-Sucking Service Manager as a windows service. Now we need to enable windows authetication and we are planning to use IIS. We are planning to use IISNode for this. So…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

Windows Server 2008, IIS7 - hosting private-bower

Its been ten years since I worked with IIS. Windows Server 2008 is new to me. Now, I need to install a private-bower service on Windows Server 2008, and I'm not sure if I need IIS 7 and iisnode or if there is a better way. Running private-bower,…
Nash Worth
  • 2,524
  • 1
  • 21
  • 28
0
votes
1 answer

Url routing not working in my node.js application with iisnode

I am working in a project "Integration of node.js with asp.net mvc application". So i use IISNode concept for this which i referred from here. This works fine. But when i add routing concepts using express , the routing doestn't work.
Varadha31590
  • 371
  • 5
  • 20
0
votes
2 answers

Single Page Application over IIS vs Node + IIS?

We are developing a single page application using AngularJs having an index file at the root which will be served by web server to client. Backend for this application is a HTTP restful on a different server. Currently when developing this SPA…
Nexus23
  • 6,195
  • 9
  • 50
  • 67
0
votes
2 answers

Unable to run NodeJs application in IISNode (Express + ejs template)

I have tried to deploy my NodeJs application to IISnode for a few days but i still unable to make it work. I believe i have all the components installed (URL Rewrite Module and IISNode) and just the configuration is wrong. I'm using ejs as a view…
TJ.
  • 241
  • 2
  • 14
0
votes
1 answer

My iisnode setup wont serve the static files

What is wrong with my setup? have in mind I use express. web.config file :
drizo
  • 267
  • 6
  • 14
0
votes
1 answer

rerouting node.js application (Ghost)

I have Ghost blogging platform running in IIS through iisnode. I want IIS to redirect/rewrite the default path / to something like this /tag/sometag/ so that when someone enters the blog, the site will show the first post under the tag. In other…
sabotero
  • 4,265
  • 3
  • 28
  • 43
0
votes
2 answers

Node 0.11.x in Azure Web Site

I am trying to get a node app running on Azure with version 0.11.x of node, so I can take advantage of some new features (e.g. generators & Koa). I have read this question and tried to follow the steps, with no success so far: Error setting up node…
JohnD
  • 14,327
  • 4
  • 40
  • 53
0
votes
0 answers

IISNode is not loading the dependencies

I am trying to host this node.js app https://github.com/Lapple/ErrorBoard on Azure website and to start with I created a node.js application in WebMatrix. As the application says, eb.js is the entry point of the app and I set that in web.config as…
Vikram Kumar
  • 3,876
  • 1
  • 17
  • 28
0
votes
1 answer

How to properly configure web.config for IISnode with clientCache

I've read in a few answers here on StackOverflow that it's better to use the iisnode's static files configurations rather than let node.js handle it. That's ok, but I just can't find a way to get it to work with the traditional configurarion for…
André Lucas
  • 1,788
  • 1
  • 18
  • 36
0
votes
0 answers

NodeJS unable to bind to an Azure internal port

I'm trying to get NodeJS to listen to an internal endpoint on Azure. I've got the following set-up. I've created an internal endpoint for port 8082 via ServiceDefinition. In my server.js I have 2 http servers server.listen(process.env.port); //…