nginx

· WEB/Nginx
Nginx 설정 파일Nginx 설정 파일은 nginx.conf이며, ${NGINX_HOME}/conf 디렉터리에 존재한다.1. nginx.conf아래는 nginx.conf 파일 예시이다.user web; # nginx 프로세스를 기동 시키는 계정worker_processes 1;error_log logs/error.log debug;pid logs/nginx.pid;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] ..
· WEB/Nginx
설치 환경 SW 버 전 Ubuntu 22.0.4LTS Nginx 1.25.1 설치 요구사항 OS 라이브러리 설치 $ apt-get install -y gcc $ apt-get install -y g++ $ apt-get install -y libssl-dev $ apt-get install -y lynx $ apt-get install -y make $ apt-get install -y libexpat1-dev $ apt-get install -y zlib1g-dev Nginx 설치 Nginx 파일 다운 후 압축해제, nginx-1.25.1 디렉토리가 ${NGINX_HOME} 디렉토리가 된다. $ http://nginx.org/download/nginx-1.25.1.tar.gz $ tar -zxvf ng..
JOTAN
'nginx' 태그의 글 목록