如何使用Node.js中iis部署运行node
这篇文章给大家介绍如何使用Node.js中iis部署运行node,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
linux
迁移到windows server
,一言难尽。网上有说iis
已经支持node
了。IIS Node折腾了一下,没跑起来,估计兼容性不是那么好,索性放弃了。直接pm2
部署了。
IIS Node地址:https://github.com/tjanczuk/iisnode/wiki/iisnode-releases
安装了IIS UrlRewrite 地址:https://www.iis.net/downloads/microsoft/url-rewrite
在站点根目录创建web.config
, 内容如下
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}" redirectType="Found" />
</rule>
<rule name="root">
<match url="^(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^chuchur.com$" />
</conditions>
<action type="Rewrite" url="http://127.0.0.1:7005/{R:1}" logRewrittenUrl="true" />
</rule>
<rule name="path">
<match url="^(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^www.chuchur.com$" />
</conditions>
<action type="Rewrite" url="http://127.0.0.1:7005/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
其中有三条规则,第一条是https
的转发
第二条和第三条分别是把来源是主记录(chuchur.com
)和别名(www.chuchur.com
)的统统转发到node
端口上。
剩下的就是一个SPA
文档站点 (vue)
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="rest" stopProcessing="true">
<match url="^rest/(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="http://127.0.0.1:7005/rest/{R:1}" />
</rule>
<rule name="root">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/index.html" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension=".woff2" mimeType="application/x-font-woff" />
</staticContent>
</system.webServer>
</configuration>
一起有 2 条规则,第一条是一个proxy
, 把/rest/
转发到node
端口的/rest/
上。第二条是vue
路由history
模式的地址Rewrite
关于如何使用Node.js中iis部署运行node就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341