🌐 Nginx 설정과 활용법Nginx는 웹 서버, 리버스 프록시, 로드 밸런싱 등 다양한 용도로 활용할 수 있는 만능 도구라서, 제대로 이해하고 활용하면 큰 도움이 됩니다. 아래는 Nginx로 할 수 있는 주요 작업 10가지와 구체적인 설정 방법입니다.1. 🌐 기본 웹 서버 설정설정 내용Nginx를 웹 서버로 설정하여 정적 파일(HTML, CSS, JS)을 서빙합니다.설정 파일 (nginx.conf)server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html; }}도커로 실행nginx.conf 파일을 생성합니다.도커 컨테이너 실행 시 설..
https
웹 로그분석을 위해 리눅스 환경에 도커로 Matomo를 설치했다. 기본 포트는 80으로 되어있고 http로 웹서버가 올라간다. 하지만 https로 서버를 띄우는 방법이 잘 나와있지 않았다. 그래서 하루동안의 삽질 결과를 정리해 보려고 한다. 아래의 경로에서 받아 run 시키기만 하면 바로 서버에 띄울 수 있다. https://hub.docker.com/_/matomo matomo - Official Image | Docker Hub About Official Images Docker Official Images are a curated set of Docker open source and drop-in solution repositories. Why Official Images? These images ..