Skip to content

Instantly share code, notes, and snippets.

@EmpeRoar
Created May 26, 2022 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EmpeRoar/c3e2f538508aa13f93f4b0a772a0f55c to your computer and use it in GitHub Desktop.
Save EmpeRoar/c3e2f538508aa13f93f4b0a772a0f55c to your computer and use it in GitHub Desktop.
<!DOCTYPE html><html lang="en">
<head>
<meta charset="utf-8">
<title>MsgnWeb</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>body{padding:0;margin:0;background-color:#fff}</style>
<!-- <link rel="stylesheet" href="styles.53fc3936202f4d20.css" media="print" onload="this.media='all'"> -->
<link id="async-css-loading" rel="stylesheet" type="text/css" href="styles.53fc3936202f4d20.css" media="print"/>
<script nonce="EDNnf03nceIOfn39fn3e9h3sdfa">
document.getElementById("async-css-loading").addEventListener("load", function(){
this.media = "all";
});
</script>
<noscript><link rel="stylesheet" href="styles.53fc3936202f4d20.css"></noscript>
</head>
<body>
<app-root></app-root>
<script src="runtime.789bc6e9f0e5ba7c.js" type="module"></script>
<script src="polyfills.e79956ca7b3bd585.js" type="module"></script>
<script src="main.05848ff39bc6abbf.js" type="module"></script>
</body></html>
-------
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<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>
<httpProtocol>
<customHeaders>
<add name="X-XSS-Protection" value="0" />
<add name="X-Content-Type-Options" value="nosniff" />
<add name="Content-Security-Policy"
value="default-src 'self';
style-src 'unsafe-inline';
style-src-elem 'self' 'unsafe-inline';
script-src 'nonce-EDNnf03nceIOfn39fn3e9h3sdfa';
script-src-elem 'self' 'nonce-EDNnf03nceIOfn39fn3e9h3sdfa';
connect-src https://192.168.254.157:8061 wss://192.168.254.157:8061 https://192.168.254.157:8060 https://auth0federationexercise.auth0.com https://lh3.googleusercontent.com;
frame-src https://auth0federationexercise.auth0.com;
img-src 'self' https://lh3.googleusercontent.com" />
<add name="Referrer-Policy" value="strict-origin-when-cross-origin" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment