fix(core): update
This commit is contained in:
@ -85,8 +85,12 @@ export let getBaseConfigString = (defaultProxy: string) => {
|
||||
return baseConfig;
|
||||
};
|
||||
|
||||
export let getHostConfigString = (hostNameArg: string, destinationIpArg: string, destinationPortArg = 80) => {
|
||||
const hostConfig = plugins.smartstring.indent.normalize(`
|
||||
export let getHostConfigString = (
|
||||
hostNameArg: string,
|
||||
destinationIpArg: string,
|
||||
destinationPortArg = 80
|
||||
) => {
|
||||
const hostConfig = plugins.smartstring.indent.normalize(`
|
||||
upstream ${hostNameArg} {
|
||||
keepalive 100;
|
||||
server ${destinationIpArg}:${destinationPortArg};
|
||||
|
Reference in New Issue
Block a user