Browse Source

1、修复跨域的配置多域名,map的默认值问题

tuon 1 year ago
parent
commit
086f16c440

+ 1 - 1
frontend/dist/assets/index-1fb20f5f.js → frontend/dist/assets/index-4317b6fb.js

@@ -1705,7 +1705,7 @@ permanent:返回301永久重定向,浏览器地址栏会显示跳转后的URL
 `)+`
 `),g+=`# location
 `,g+=h.join(`
-`),ae.jsx(Bi,{destroyTooltipOnHide:!0,overlayClassName:"cors-config-overlay",trigger:"click",placement:"topLeft",autoAdjustOverflow:!0,title:ae.jsx(Tn.TextArea,{disabled:!0,rows:Math.min(10,h.length+p.length+3),value:g}),children:ae.jsx("span",{className:"config-status has-config",children:"已配置"})})}return ae.jsx("span",{className:"config-status",children:"未完成配置"})},n=(c={})=>{var f;const s=[];return!((f=c.origins)!=null&&f.length)||c.origins.length<2||(s.push(`map  $http_origin ${c.key}  {`),s.push("    default 0;"),c.origins.forEach(h=>{s.push(`    "~${h}"   ${h};`)}),s.push("}")),s},a=(c={})=>{var f,h,p,g;const s=[];return c.key||(c.key=`$cors_${ka(20)}`),(f=c.origins)!=null&&f.length&&(c.origins.length===1?s.push(`add_header 'Access-Control-Allow-Origin' '${c.origins[0]}';`):s.push(`add_header 'Access-Control-Allow-Origin' ${c.key};`),(h=c.methods)!=null&&h.length&&s.push(`add_header 'Access-Control-Allow-Methods' '${c.methods.join(",")}';`),(p=c.headers)!=null&&p.length&&s.push(`add_header 'Access-Control-Allow-Headers' '${c.headers.join(",")}';`),rr(c.credentials)||s.push(`add_header Access-Control-Allow-Credentials   '${c.credentials?"true":"false"}';`),(g=c.expose)!=null&&g.length&&s.push(`add_header 'Access-Control-Expose-Headers' '${c.expose.join(",")}';`),rr(c.preflight)||s.push(`if ($request_method = 'OPTIONS') {
+`),ae.jsx(Bi,{destroyTooltipOnHide:!0,overlayClassName:"cors-config-overlay",trigger:"click",placement:"topLeft",autoAdjustOverflow:!0,title:ae.jsx(Tn.TextArea,{disabled:!0,rows:Math.min(10,h.length+p.length+3),value:g}),children:ae.jsx("span",{className:"config-status has-config",children:"已配置"})})}return ae.jsx("span",{className:"config-status",children:"未完成配置"})},n=(c={})=>{var f;const s=[];return!((f=c.origins)!=null&&f.length)||c.origins.length<2||(s.push(`map  $http_origin ${c.key}  {`),s.push(`    default  ${c.origins[0]};`),c.origins.forEach(h=>{s.push(`    "~${h}"   ${h};`)}),s.push("}")),s},a=(c={})=>{var f,h,p,g;const s=[];return c.key||(c.key=`$cors_${ka(20)}`),(f=c.origins)!=null&&f.length&&(c.origins.length===1?s.push(`add_header 'Access-Control-Allow-Origin' '${c.origins[0]}';`):s.push(`add_header 'Access-Control-Allow-Origin' ${c.key};`),(h=c.methods)!=null&&h.length&&s.push(`add_header 'Access-Control-Allow-Methods' '${c.methods.join(",")}';`),(p=c.headers)!=null&&p.length&&s.push(`add_header 'Access-Control-Allow-Headers' '${c.headers.join(",")}';`),rr(c.credentials)||s.push(`add_header Access-Control-Allow-Credentials   '${c.credentials?"true":"false"}';`),(g=c.expose)!=null&&g.length&&s.push(`add_header 'Access-Control-Expose-Headers' '${c.expose.join(",")}';`),rr(c.preflight)||s.push(`if ($request_method = 'OPTIONS') {
         return 204;
  }`)),s};return ae.jsx(UC,{...e,columns:kfr.form,renderLines:a,renderHttpLines:n,content:r,overlayClassName:"cors-page-overlay",labelCol:4})};Sf("cors",Nfr);const zfr=[{title:"Allow",type:"array",key:"allow",hideLabel:!0,required:!1,description:"允许访问的白名单配置,eg. <br>    allow 192.168.1.0/24;<br>    allow 10.1.1.0/16;<br>    allow 2001:0db8::/32;",items:[{title:"address|CIDR|unix|all",type:"string",key:"value",description:"The rules are checked in sequence until the first match is found. In this example, access is allowed only for IPv4 networks 10.1.1.0/16 and 192.168.1.0/24 excluding the address 192.168.1.1, and for IPv6 network 2001:0db8::/32. In case of a lot of rules, the use of the ngx_http_geo_module module variables is preferable."}]},{title:"Deny",type:"array",key:"deny",hideLabel:!0,required:!1,description:`拒绝访问的名单配置,eg. deny  192.168.1.1;
     deny  all;`,items:[{title:"address|CIDR|unix|all",type:"string",key:"value",description:"The rules are checked in sequence until the first match is found. In this example, access is allowed only for IPv4 networks 10.1.1.0/16 and 192.168.1.0/24 excluding the address 192.168.1.1, and for IPv6 network 2001:0db8::/32. In case of a lot of rules, the use of the ngx_http_geo_module module variables is preferable."}]}],Lfr={form:zfr};const Bfr=e=>{const r=c=>c!=null&&c.length?ae.jsx(Tn.TextArea,{className:"access-more-values",rows:Math.min(10,c.length),disabled:!0,value:c.join(`

+ 1 - 1
frontend/dist/index.html

@@ -4,7 +4,7 @@
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <title>NginxUI</title>
     <script type="application/javascript" src="./config.js"></script>
-    <script crossorigin="">import('/nginx-ui/assets/index-1fb20f5f.js').finally(() => {
+    <script crossorigin="">import('/nginx-ui/assets/index-4317b6fb.js').finally(() => {
             
     const qiankunLifeCycle = window.moudleQiankunAppLifeCycles && window.moudleQiankunAppLifeCycles['nginx-ui'];
     if (qiankunLifeCycle) {

+ 1 - 1
frontend/src/pages/nginx/components/cors/index.tsx

@@ -57,7 +57,7 @@ export const CorsInput = ({...props}: AutoTypeInputProps)=>{
       return lines
     }
     lines.push(`map  $http_origin ${values.key}  {`)
-    lines.push(`    default 0;`)
+    lines.push(`    default  ${values.origins[0]};`)
     values.origins.forEach(host=>{
       lines.push(`    "~${host}"   ${host};`)
     })