選択できるのは25トピックまでです。
			トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 123456789 | 
							- #!/usr/bin/env bash
 - 
 - SYSPROPS_FILE=${DATADIR}/system.properties
 - if [ -f "${SYSPROPS_FILE}" ]; then
 -     SYSPROPS_PORT=`grep "^unifi.https.port=" ${SYSPROPS_FILE} | cut -d'=' -f2`
 - fi
 - PORT=${SYSPROPS_PORT:-8443}
 - 
 - curl --max-time 5 -kILs --fail https://localhost:${PORT}
 
 
  |