芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/strapi/lib/utils/url-from-segments.js
'use strict'; /** * Returns a url base on hostname, port and ssl options */ module.exports = ({ hostname, port, ssl = false }) => { const protocol = ssl ? 'https' : 'http'; const defaultPort = ssl ? 443 : 80; const portString = port === undefined || parseInt(port, 10) === defaultPort ? '' : `:${port}`; return `${protocol}://${hostname}${portString}`; };