Browse Source

Increase the number of characters for webBasePath (#3239)

xujie86 1 day ago
parent
commit
75416eebd7
2 changed files with 2 additions and 2 deletions
  1. 1 1
      install.sh
  2. 1 1
      x-ui.sh

+ 1 - 1
install.sh

@@ -115,7 +115,7 @@ config_after_install() {
             echo -e "${green}Access URL: http://${server_ip}:${config_port}/${config_webBasePath}${plain}"
             echo -e "${green}Access URL: http://${server_ip}:${config_port}/${config_webBasePath}${plain}"
             echo -e "###############################################"
             echo -e "###############################################"
         else
         else
-            local config_webBasePath=$(gen_random_string 15)
+            local config_webBasePath=$(gen_random_string 18)
             echo -e "${yellow}WebBasePath is missing or too short. Generating a new one...${plain}"
             echo -e "${yellow}WebBasePath is missing or too short. Generating a new one...${plain}"
             /usr/local/x-ui/x-ui setting -webBasePath "${config_webBasePath}"
             /usr/local/x-ui/x-ui setting -webBasePath "${config_webBasePath}"
             echo -e "${green}New WebBasePath: ${config_webBasePath}${plain}"
             echo -e "${green}New WebBasePath: ${config_webBasePath}${plain}"

+ 1 - 1
x-ui.sh

@@ -214,7 +214,7 @@ reset_webbasepath() {
         return
         return
     fi
     fi
 
 
-    config_webBasePath=$(gen_random_string 10)
+    config_webBasePath=$(gen_random_string 18)
 
 
     # Apply the new web base path setting
     # Apply the new web base path setting
     /usr/local/x-ui/x-ui setting -webBasePath "${config_webBasePath}" >/dev/null 2>&1
     /usr/local/x-ui/x-ui setting -webBasePath "${config_webBasePath}" >/dev/null 2>&1