mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
* Only run CodeQL in NS repo (#6873)
* Fix server.js location for Azure
This commit is contained in:
@@ -25,6 +25,7 @@ jobs:
|
|||||||
analyze:
|
analyze:
|
||||||
name: Analyze
|
name: Analyze
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: github.ref == 'refs/heads/dev' && github.repository_owner == 'nightscout'
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|||||||
+2
-2
@@ -4,7 +4,7 @@
|
|||||||
<!-- Counter-intuitively this needs to be FALSE so IIS can let go of websockets and node can take over. -->
|
<!-- Counter-intuitively this needs to be FALSE so IIS can let go of websockets and node can take over. -->
|
||||||
<webSocket enabled="false" />
|
<webSocket enabled="false" />
|
||||||
<handlers>
|
<handlers>
|
||||||
<add name="iisnode" path="server.js" verb="*" modules="iisnode"/>
|
<add name="iisnode" path="lib/server/server.js" verb="*" modules="iisnode"/>
|
||||||
</handlers>
|
</handlers>
|
||||||
<rewrite>
|
<rewrite>
|
||||||
<rules>
|
<rules>
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
<conditions>
|
<conditions>
|
||||||
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
|
||||||
</conditions>
|
</conditions>
|
||||||
<action type="Rewrite" url="server.js"/>
|
<action type="Rewrite" url="lib/server/server.js"/>
|
||||||
</rule>
|
</rule>
|
||||||
</rules>
|
</rules>
|
||||||
</rewrite>
|
</rewrite>
|
||||||
|
|||||||
Reference in New Issue
Block a user