feat: ssh auth, protocol management, and cleanup

This commit is contained in:
infosave2007
2026-01-23 17:55:40 +03:00
parent 60fc55fd47
commit bbab877eac
70 changed files with 16225 additions and 986 deletions
@@ -0,0 +1,17 @@
-- Remove fully uppercase variable outputs from AmneziaWG install script
-- Keep only Jc, Jmin, Jmax format (first letter uppercase)
UPDATE protocols SET
install_script = REPLACE(
REPLACE(
REPLACE(
install_script,
'echo "Variable: JC=${JC:-5}"',
''
),
'echo "Variable: JMIN=${JMIN:-100}"',
''
),
'echo "Variable: JMAX=${JMAX:-200}"',
''
)
WHERE slug = 'amnezia-wg-advanced';