fix(install_server.sh): curl missing -f

This commit is contained in:
Haruue Icymoon 2022-11-28 12:15:35 +08:00
parent 960a380521
commit e2cc0dff48
No known key found for this signature in database
GPG Key ID: F6083B28CBCBC148

View File

@ -41,7 +41,7 @@ HYSTERIA_HOME_DIR="/var/lib/hysteria"
# curl command line flags.
# To using a proxy, please specify ALL_PROXY in the environ variable, such like:
# export ALL_PROXY=socks5h://192.0.2.1:1080
CURL_FLAGS=(-L -q --retry 5 --retry-delay 10 --retry-max-time 60)
CURL_FLAGS=(-L -f -q --retry 5 --retry-delay 10 --retry-max-time 60)
###