Skip to content
Merged

npc env #5346

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/sitemaps/buildSitemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const agent = (process.env.PROXY_HOST && process.env.PROXY_PORT) ?
host: process.env.PROXY_HOST,
port: process.env.PROXY_PORT
}
}) : null;
}) : new https.Agent({
rejectUnauthorized: false
});

/**
* @param {string} xml string of xml, previous xml entries from current sitemap
Expand Down
Loading