From 7823a148daef90e7d96b0c17d34826bbe059cff9 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Thu, 25 Jul 2019 10:23:42 -0400 Subject: [PATCH] Might fix #34 by reducing MTU size --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 42f9a9dd..83bd338b 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -263,6 +263,8 @@ if [ "$NONROOT" = "yes" ]; then echo "user nonrootuser" >> "$TARGET_PATH/config.ovpn" exitOnError $? "Cannot add 'user nonrootuser' to $TARGET_PATH/config.ovpn" fi +echo "mssfix 1300" >> "$TARGET_PATH/config.ovpn" +exitOnError $? "Cannot add 'mssfix 1300' to $TARGET_PATH/config.ovpn" # Note: TUN device re-opening will restart the container due to permissions printf "DONE\n"