Я развернул приложение узла в Azure и хочу его настроить. Это содержимое файла "index.js", который я хочу проверить:
const express = require('express');
const app = express();
const bodyparser = require('body-parser');
const cors = require('cors');
var cats = [{name:'Lily'}, {name: 'Lucy'}];
var corOptions = {
origin: '*',
optionsSuccessStatus: 200
};
app.use(cors(corOptions));
app.listen(3000,() =>{
console.log('Server started :)');
});
app.route('/api/cats').get((req, res) =>{
console.log(req.hostname);
console.log(req);
res.send(cats);
});
console.log("Server is running...");
Вот файл package.json
{
"name": "app-service-hello-world",
"description": "Simple Hello World Node.js sample for Azure App Service",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Microsoft",
"engines": {
"node": ">=6.9.1"
},
"scripts": {
"start": "node index.js"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3"
}
}
web.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<webSocket enabled="false" />
<handlers>
<!-- Indicates that the server.js file is a node.js site to be handled by the iisnode module -->
<add name="iisnode" path="index.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<!-- Do not interfere with requests for node-inspector debugging -->
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^index.js\/debug[\/]?" />
</rule>
<!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
<rule name="StaticContent">
<action type="Rewrite" url="public{REQUEST_URI}"/>
</rule>
<!-- All other URLs are mapped to the node.js site entry point -->
<rule name="DynamicContent">
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
</conditions>
<action type="Rewrite" url="index.js"/>
</rule>
</rules>
</rewrite>
<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
<security>
<requestFiltering>
<hiddenSegments>
<remove segment="bin"/>
</hiddenSegments>
</requestFiltering>
</security>
<!-- Make sure error responses are left untouched -->
<httpErrors existingResponse="PassThrough" />
<!--<iisnode watchedFiles="web.config;*.js"/>-->
</system.webServer>
</configuration>
Я тестирую приложение, используя следующий URL, но не получаю ожидаемый результат: https://firstnodeapp1.azurewebsites.net/api/cats
Я протестировал его локально как http://localhost:8000/api/cats, и он отлично работает. Так что на самом деле беспокоюсь о том, что пропало.
Буду очень признателен за любую помощь в правильной настройке.