forked from mirrors/amnezia-wg-easy
add optional client profile MTU var
This commit is contained in:
parent
ffaf67a08a
commit
b4fbcdd2db
4 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,7 @@ const {
|
|||
WG_PATH,
|
||||
WG_HOST,
|
||||
WG_PORT,
|
||||
WG_MTU,
|
||||
WG_DEFAULT_DNS,
|
||||
WG_DEFAULT_ADDRESS,
|
||||
} = require('../config');
|
||||
|
@ -174,6 +175,9 @@ AllowedIPs = ${client.address}/32`;
|
|||
PrivateKey = ${client.privateKey}
|
||||
Address = ${client.address}/24
|
||||
DNS = ${WG_DEFAULT_DNS}
|
||||
if (typeof ${WG_MTU} !== 'undefined' || ${WG_MTU} !== null) {
|
||||
MTU = ${WG_MTU}
|
||||
}
|
||||
|
||||
[Peer]
|
||||
PublicKey = ${config.server.publicKey}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue