yeonghoon.kim

  • 게시판
  • 갤러리

임시 파킹 페이지

김영훈 2026.01.20 18:14 조회 수 : 308

yeonghoon.kim 루트에 띄워두는 용도.

 

services:
  web:
    image: nginx:alpine
    container_name: parking-web
    restart: unless-stopped
    volumes:
      - ../public:/var/www/html:ro
      - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
    depends_on:
      - php
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.parking.rule=Host(`yeonghoon.kim`) || Host(`www.yeonghoon.kim`)"
      - "traefik.http.routers.parking.entrypoints=web"
      - "traefik.http.services.parking.loadbalancer.server.port=80"
    networks:
      - proxy
      - internal

  php:
    image: php:8.3-fpm-alpine
    container_name: parking-php
    restart: unless-stopped
    volumes:
      - ../public:/var/www/html:ro
    networks:
      - internal

 

 

nginx 설정.

 

 

server {
    listen 80;
    server_name yeonghoon.kim www.yeonghoon.kim;
    root /var/www/html;
    index index.html index.php;

    # 버전 정보 숨기기 (보안)
    server_tokens off;

    location / {
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        fastcgi_pass php:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\. {
        deny all;
    }
}

index.html은 그냥 준비중 페이지.

<h1>yeonghoon.kim</h1>
<p class="subtitle">사이트 준비중입니다.</p>

나중에 링크도 몇 개 붙임.

<a href="https://bing2.yeonghoon.kim" class="service-card">
    <div class="service-name">빙빙 지하철</div>
    <div class="service-desc">지하철 룰렛 게임</div>
</a>

<a href="https://money.yeonghoon.kim" class="service-card">
    <div class="service-name">가계부</div>
    <div class="service-desc">지출 관리</div>
</a>

<a href="https://japan.yeonghoon.kim" class="service-card">
    <div class="service-name">일본 여행</div>
    <div class="service-desc">여행 경비 추적</div>
</a>

 


  • 추천 0

  • 비추천 0
이 게시물을
목록

댓글 0

번호 제목 글쓴이 날짜 조회 수
공지 2025 일본 여행 계획 김영훈 2024.10.10 4119
공지 현금, 저축, 투자, 지출, 예산, 보험 내역(2024-05-30) 김영훈 2024.03.10 3752
297 DGX Spark LLM 벤치마크 김영훈 2026.02.11 132
296 GPU 모니터링 대시보드 구축 김영훈 2026.02.11 150
295 Docker Ollama 트러블슈팅 김영훈 2026.02.11 128
294 원격 LLM 챗봇 테스트 김영훈 2026.02.11 140
293 DGX Ollama 구축 김영훈 2026.02.11 183
292 OpenClaw cron regression 대응 김영훈 2026.02.08 186
291 WAF honeypot 설정 김영훈 2026.02.07 104
290 smtp-relay 설정 김영훈 2026.02.06 195
289 openclaw 구축 작업 노트 [2] 김영훈 2026.02.01 341
288 Traefik 설정 김영훈 2026.01.28 353
287 GitLab CI/CD 테스트 김영훈 2026.01.28 216
286 OpenVPN 구축 김영훈 2026.01.28 143
285 ollama-chatbot 테스트 메모 김영훈 2026.01.27 355
284 monitoring 설정 김영훈 2026.01.23 130
» 임시 파킹 페이지 김영훈 2026.01.20 308
282 infra-base 기본 서버 설정 메모 김영훈 2026.01.20 171
281 [바이브코딩 - 클로드] kospiAlarm 작업 메모 김영훈 2025.10.29 109
280 [바이브코딩 - 클로드] fullstack_template 작업 메모 김영훈 2025.10.18 243
279 [바이브코딩 - 클로드] reminder_android 작업 메모 김영훈 2025.10.17 85
278 [바이브코딩 - 클로드] bingbingsubway 작업 메모 김영훈 2025.10.12 165
쓰기 태그
 첫 페이지 1 2 3 4 5 6 7 8 9 10 끝 페이지