forked from mirrors/amnezia-wg-easy
Merge pull request #800 from minghongx/rm-newline-char
Remove redundant newline char in generated client configuration
This commit is contained in:
commit
660d77d63b
1 changed files with 3 additions and 4 deletions
|
@ -196,12 +196,11 @@ AllowedIPs = ${client.address}/32`;
|
||||||
const config = await this.getConfig();
|
const config = await this.getConfig();
|
||||||
const client = await this.getClient({ clientId });
|
const client = await this.getClient({ clientId });
|
||||||
|
|
||||||
return `
|
return `[Interface]
|
||||||
[Interface]
|
|
||||||
PrivateKey = ${client.privateKey}
|
PrivateKey = ${client.privateKey}
|
||||||
Address = ${client.address}/24
|
Address = ${client.address}/24
|
||||||
${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}` : ''}
|
${WG_DEFAULT_DNS ? `DNS = ${WG_DEFAULT_DNS}\n` : ''}\
|
||||||
${WG_MTU ? `MTU = ${WG_MTU}` : ''}
|
${WG_MTU ? `MTU = ${WG_MTU}\n` : ''}\
|
||||||
|
|
||||||
[Peer]
|
[Peer]
|
||||||
PublicKey = ${config.server.publicKey}
|
PublicKey = ${config.server.publicKey}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue