1. 리눅스 버전 확인
$> cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
2. Nginx 설치
#설치
$> sudo yum install epel-release
$> sudo yum update
$> sudo yum install nginx
#리눅스 내 서비스 등록
$> sudo systemctl enable nginx
$> sudo systemctl start nginx
#방화벽 (Cloud 사용자의 경우엔 Cloud에서 제공하는 방화벽처리, 개인서버의 경우만 아래 설정 처리)
$> sudo firewall-cmd --permanent --zone=public --add-service=http
$> sudo firewall-cmd --permanent --zone=public --add-service=https
$> sudo firewall-cmd --reload
3. Nginx 확인
$> status nginx.service
● nginx.service - The nginx HTTP and reverse proxy server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: active (running) since Mon 2023-04-24 16:46:33 KST; 3 days ago
Process: 17337 ExecReload=/usr/sbin/nginx -s reload (code=exited, status=0/SUCCESS)
Process: 18694 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
Process: 18692 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
Process: 18691 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
Main PID: 18695 (nginx)
CGroup: /system.slice/nginx.service
├─18695 nginx: master process /usr/sbin/nginx
├─18696 nginx: worker process
└─18697 nginx: worker process
....
- Active 상태가 active (running) 이면 정상 설치 완료
4. Nginx 설정
- /etc/nginx/nginx.conf 편집. 필요한 부분에 맞춰 설정.
$> sudo nano /etc/nginx/nginx.conf
#[설명] Nginx는 하나의 worker프로세스만 생성하여 웹요청을 처리
worker_processes 1;
#[설명] 아래 에러 로그 남기는 예시
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#[설명] 메인프로세스의 프로세스ID 지정하는데 사용. 파일경로를 지정하여 PID를 파일에 저장.
#pid logs/nginx.pid;
#[설명] 최대 1024개의 클라이언트 연결을 처리
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# [설명] 로그 포멧 예제
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
#[설명] 파일의 데이터를 커널 버퍼에 복사하지 않고, 파일의 내용을 바로 네트워크 소켓으로 전송
# sendfile on을 할 경우 파일 전송 속도 향상에 도움.단, 네트워크파일시스템등 경우에 따라 고려
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
#[설명] http 일반적인 80포트로 서버 서비스 할때 설정
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
#[설명] 특정 포트로 서비스 진행시 설정
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
#[설명] https 사용시 예제
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
5. 접속
http://127.0.0.1:80 시 root(html로 지정)/index.html 페이지 노출
nginx에서 말하는 root의 경로 : /usr/share/nginx/
반응형
'운영체제 및 서버 > Nginx' 카테고리의 다른 글
nginx.service: Can't open PID file /run/nginx.pid (yet?) after start: Operation not permitted 이슈 해결 방안 (0) | 2023.11.23 |
---|