12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
|
/**
|
||
|
* turns a domain config to two config files for nginx web sever on proxmox and its container
|
||
|
* @param domainConfig
|
||
|
* @returns {{homeNginxConf: string, containerNginxConf: string}}
|
||
|
*/
|
||
|
export function makeHostFileForWordpress (domainConfig) {
|
||
|
|
||
|
const model = {
|
||
|
hostsList: ``,
|
||
|
}
|
||
|
return model
|
||
|
}
|