[openssl] 우분투 openssl 설치 및 세팅, nginx 설정하기
·
프로그램/ETC
안녕하세요 openssl 설치 및 발급 후 nginx에 적용 방법에 대해 포스팅합니다. [개발 환경] - OS: Ubuntu 22.04.1 LTS # 설치하기 apt install openssl -y # 개인 키(key)와 인증 요청서(csr) 생성하기 openssl req -new -newkey rsa:2048 -nodes -keyout [host].key -out [host].csr # 인증서 생성하기 openssl x509 -req -days 365 -in [host].csr -signkey [host].key -out [host].crt # nginx 설정하기 server { listen 80; server_name [host]; return 301 https://$host$request_uri;..
[nginx] 우분투 nginx 설치하기
·
프로그램/ETC
안녕하세요. 우분투 환경에 nginx 설치 방법을 포스팅합니다. [개발 환경] - OS: Ubuntu 22.04.1 LTS # nginx 설치하기 sudo apt update -y sudo apt install nginx -y # nginx 실행하기 service nginx start # 실행 확인 하기 ps -ef | grep nginx 우분투 환경에 nginx 설치가 완료되었습니다.
[Nginx] 413 Payload Too Large (Request Entity Too Large) 오류 해결하기
·
프로그램/ETC
안녕하세요! 프뚜입니다. 용량이 큰 파일을 업로드하면 413 Request Entity Too Large라는 메시지가 발생합니다. client_max_body_size 설정 때문입니다. request의 Content-Length 헤더 값이 설정된 값을 넘을 수 없습니다. [개발 환경] - OS: Ubuntu 22.04.1 LTS # conf 파일 수정하기 # 2023.01.06[프뚜]: nginx conf 경로 vi /etc/nginx/nginx.conf # 2023.01.06[프뚜]: nginx conf 내용 변경 ... http { ... client_max_body_size 20M; ... } ... # 2023.01.06[프뚜]: nginx restart service nginx restart s..
[Nginx] nginx version 제거하기
·
프로그램/ETC
안녕하세요! 프뚜입니다. nginx에서 제공하는 페이지에 version을 노출시키는 부분이 있습니다. 보안상의 이슈로 version은 hidden해야하기 때문에 공유하도록 하겠습니다. [개발 환경] - OS: Ubuntu 22.04.1 LTS # nginx version 확인하기 nginx/1.18.0 (Ubuntu) 버전과 OS 정보를 노출시키고 있습니다. # conf 파일 수정하기 # 2022.12.23[프뚜]: nginx conf 경로 vi /etc/nginx/nginx.conf # 2022.12.23[프뚜]: nginx conf 내용 변경 (server_tokens off;) ... http { ... server_tokens off; ... } ... # 2022.12.23[프뚜]: nginx ..
프뚜
'nginx' 태그의 글 목록