자동 스캔 실패 — 수동 모드
웹서버의 디렉토리 인덱싱이 비활성 상태입니다. 아래 두 가지 방법 중 하나를 선택하세요.
- 방법 A — 웹서버 autoindex 활성화 (권장)
Nginx:
# /etc/nginx/sites-available/default 의 location 블록 내
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
Apache (.htaccess):
Options +Indexes
IndexOptions FancyIndexing
- 방법 B — 분석 후
manifest.json 생성
리포트 폴더 루트에서 동봉된 generate_manifest.py 실행:
$ cd /path/to/trend_analysis_lite
$ python generate_manifest.py
→ manifest.json 생성 완료 (리포트 N개)
FTP로 manifest.json을 업로드하면 즉시 반영됩니다.