mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 07:56:23 +00:00
Yep, multi-domains is a thing
This commit is contained in:
parent
d6c7aff21b
commit
f55e9809b7
@ -56,15 +56,12 @@ uploadsController.upload = function(req, res, next){
|
||||
|
||||
db.table('files').insert(files).then(() => {
|
||||
|
||||
console.log('basedomain: ' + req.get('host'))
|
||||
let basedomain = req.get('host')
|
||||
for(let domain of config.domains)
|
||||
if(domain.host === req.get('host'))
|
||||
if(domain.hasOwnProperty('resolve'))
|
||||
basedomain = domain.resolve
|
||||
|
||||
console.log('basedomain: ' + basedomain)
|
||||
|
||||
res.json({
|
||||
success: true,
|
||||
files: files.map(file => {
|
||||
|
Loading…
Reference in New Issue
Block a user