169 lines
3.8 KiB
JavaScript
169 lines
3.8 KiB
JavaScript
/**
|
|
* setup domains
|
|
* @type {{framework: string, domain: string}[]}
|
|
*/
|
|
|
|
import fs from 'node-fs'
|
|
import { makeHostFileForWordpress } from './model.wordpress.mjs'
|
|
import { makeHostFileForSymfony } from './model.symfony.mjs'
|
|
import { makeHostFileForPhpPages } from './model.php-website.mjs'
|
|
|
|
const LXCcontainerLocalIP = '10.10.10.103'
|
|
const LXCcontainerProtocol = 'https'
|
|
|
|
|
|
const domainsConfig = [{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Blog cipherbliss',
|
|
domain: 'www.cipherbliss.com',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
},{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Portfolio cipherbliss',
|
|
domain: 'portfolio.cipherbliss.com',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Blog tykayn - le vortex à chats',
|
|
domain: 'tykayn.fr',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Site de la compagnie la puce à l\'oreille',
|
|
domain: 'www.pucealoreille.fr',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Site de Didier, un bec et des ailes',
|
|
domain: 'www.unbecetdesailes.fr',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Site de Catherine Fonder, conteuse',
|
|
domain: 'www.catherinefonder.fr',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Site de la Fromagerie BSF',
|
|
domain: 'www.lafromagerie-bsf.com',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Claire Lemoine portfolio',
|
|
domain: 'www.clairelemoine.art',
|
|
framework: 'wordpress',
|
|
disableSSL: false,
|
|
},
|
|
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Blog Qzine',
|
|
domain: 'qzine.fr',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Funky Framadate Démo',
|
|
domain: 'framadate-api.cipherbliss.com',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
}, {
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Portfolio cipherbliss',
|
|
domain: 'portfolio.cipherbliss.com',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Caisse Bliss',
|
|
domain: 'caisse.cipherbliss.com',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Sondages Qzine',
|
|
domain: 'sondages.qzine.fr',
|
|
framework: 'symfony',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Chaton coussinet',
|
|
domain: 'www.coussinet.org',
|
|
framework: 'static',
|
|
disableSSL: false,
|
|
},
|
|
{
|
|
LXCcontainerLocalIP,
|
|
LXCcontainerProtocol,
|
|
name: 'Join Fediverse',
|
|
domain: 'www.joinfediverse.org',
|
|
framework: 'static',
|
|
disableSSL: false,
|
|
},
|
|
]
|
|
// autres frameworks:
|
|
// nextcloud: cloud.tykayn.fr
|
|
// vaultwarden: pass.cipherbliss.com
|
|
// mastodon: mastodon.cipherbliss.com
|
|
// peertube: peertube.cipherbliss.com
|
|
//
|
|
// sites statiques
|
|
// meltingpot.cipherbliss.com
|
|
// joinfediverse
|
|
// coussinet
|
|
|
|
for (let configDomain of domainsConfig) {
|
|
console.log('domaine :', configDomain.name)
|
|
let hostFile
|
|
if (configDomain.framework === 'wordpress') {
|
|
hostFile = makeHostFileForWordpress(configDomain)
|
|
}
|
|
if (configDomain.framework === 'symfony') {
|
|
hostFile = makeHostFileForSymfony(configDomain)
|
|
}
|
|
if (configDomain.framework === 'static') {
|
|
hostFile = makeHostFileForPhpPages(configDomain)
|
|
}
|
|
writeFile(configDomain.domain + '_host.conf', hostFile.homeNginxConf)
|
|
writeFile(configDomain.domain + '_container.conf', hostFile.containerNginxConf)
|
|
}
|
|
|
|
function writeFile (fileName, fileContent) {
|
|
console.log('write file', fileName)
|
|
return fs.writeFile(
|
|
`./output/${fileName}`,
|
|
fileContent,
|
|
'utf8',
|
|
(err) => {
|
|
if (err) {
|
|
console.log(`Error writing file: ${err}`)
|
|
}
|
|
}
|
|
)
|
|
} |