Blog

  • onlyoffice 설치

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    services:
      onlyoffice:
        image: onlyoffice/documentserver
        container_name: onlyoffice
        ports:
           8467:80/tcp
        volumes:
           /volume1/docker/onlyoffice/logs:/var/log/onlyoffice
           /volume1/docker/onlyoffice/data:/var/www/onlyoffice/Data
        environment:
           JWT_ENABLED=true
           JWT_SECRET=nasdangnasdangnasdangnasdang1234
        restart: unlessstopped
    cs
  • 시놀로지 도커 Stirling-PDF 설치

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    services:
      stirlingpdf:
        container_name: StirlingPDF
        image: stirlingtools/stirlingpdf
        mem_limit: 4g
        cpu_shares: 1024
        security_opt:
           nonewprivileges:true
        healthcheck:
          test: timeout 10s bash ‘:> /dev/tcp/127.0.0.1/8080’ || exit 1
          interval: 10s
          timeout: 5s
          retries: 3
          start_period: 90s
        ports:
           7890:8080
        volumes:
           /volume1/docker/stirling/data:/usr/share/tessdata:rw # Required for extra OCR languages
           /volume1/docker/stirling/config:/configs:rw
           /volume1/docker/stirling/logs:/logs:rw
        environment:
         PUID: 1026
         PGID: 100
         DOCKER_ENABLE_SECURITY: true # or false
         SECURITY_ENABLELOGIN: true #or false
         SECURITY_INITIALLOGIN_USERNAME: nasdang
         SECURITY_INITIALLOGIN_PASSWORD: nasdanghosting   
         INSTALL_BOOK_AND_ADVANCED_HTML_OPS: false #or true
         SECURITY_CSRFDISABLED: true #or false
         SYSTEM_DEFAULTLOCALE: en_US
         UI_APPNAME: mariusPDF
         UI_HOMEDESCRIPTION: nasdanghosting PDF Description
         UI_APPNAMENAVBAR: nasdanghosting PDF
         SYSTEM_MAXFILESIZE: 5000 # Set the maximum file size in MB
         METRICS_ENABLED: true
         SYSTEM_GOOGLEVISIBILITY: false # or true
        restart: onfailure:5
    cs

    localhost:7890

  • Synology Docker Homarr 설치

    docker/homarr 폴더 생성

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    services:
      homarr:
        image: ghcr.io/homarrlabs/homarr:latest
        container_name: homarr
        ports:
           7575:7575/tcp
        volumes:
           /volume1/docker/homarr:/appdata
           /var/run/docker.sock:/var/run/docker.sock
        environment:
           SECRET_ENCRYPTION_KEY=30E7B8474F977B15DE754F536F93CA2E596D3A01A517393BA45CDD73226BB64A
        restart: always
    cs

    SECRET_ENCRYPTION_KEY 무료로 받기

    https://numbergenerator.org/random-64-digit-hex-codes-generator#google_vignette

    localhost:7575 접속

    관리자 계정 생성

    Create your first board

    관리자 로그인

  • HA(Home Assistant) HACS(Home Assistant Community Store) 설치하기

    고급 모드 활성화

    애드온 Terminal & SSH 설치

    1
    wget  https://get.hacs.xyz | bash 
    cs

    통합구성요소 추가하기

    HACS

  • HA(Home Assistant) SmartThings 업데이트를 수신하도록 올바르게 구성되지 않았습니다.

    SmartThings
    Home Assistant가 SmartThings에서 업데이트를 수신하도록 올바르게 구성되지 않았습니다. 웹 훅 URL이 잘못되었습니다:

    http://192.168.50.39:8123/api/webhook/148a6862958e1ca5c0ce4bbe8cae33303622a3689b38164d0c5ea303d6e58ee7

    안내를 참고하여 구성을 업데이트하고 Home Assistant를 다시 시작한 후 다시 시도해주세요.

    1
    2
    3
    homeassistant:
      external_url: https://도메인주소:443
      internal_url: http://192.168.50.39:8123
    cs

  • HA(Home Assistant) NPM(Nginx Proxy Manager) 역방향 프록시 400: Bad Request 해결

    localhost:8123 접속

    1
    2
    3
    4
    http:
      use_x_forwarded_for: true
      trusted_proxies:
        – 192.168.1.0/24
    cs