Commit ba195fa1 authored by nanahira's avatar nanahira

Update site.ts

parent 7f4135d7
Pipeline #24462 failed with stages
in 57 seconds
......@@ -105,7 +105,7 @@ async function getSiteData(
if (cert) {
https = {
cert,
ports: parser.getArrayNumber('HTTPS_PORT') || [443],
ports: parser.getArray('HTTPS_PORT') || ['443'],
redirect: !parser.getBoolean('HTTPS_NOREDIR'),
hsts: parser.getBoolean('HSTS'),
};
......@@ -166,7 +166,7 @@ async function getSiteData(
return {
domains: domains,
ports: parser.getArrayNumber('PORT') || [80],
ports: parser.getArray('PORT') || ['80'],
https,
headers: Object.entries(parser.getDict('HEADER')).map(([name, value]) => ({
name: name.replace(/_/g, '-'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment