Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789
  1. #!/usr/bin/env bash
  2. SYSPROPS_FILE=${DATADIR}/system.properties
  3. if [ -f "${SYSPROPS_FILE}" ]; then
  4. SYSPROPS_PORT=`grep "^unifi.https.port=" ${SYSPROPS_FILE} | cut -d'=' -f2`
  5. fi
  6. PORT=${SYSPROPS_PORT:-8443}
  7. curl --max-time 5 -kILs --fail https://localhost:${PORT}