# OS환경은 CentOS 7.0으로 진행되었습니다.
이전글에서 nginx를 설치 하였습니다.
nginx의 기본 설정을 확인해 보겠습니다.
http 속성은 /etc/nginx/nginx.conf 에 있습니다.
[root@NGINX /]# vi /etc/nginx/nginx.conf
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
server 속성은 /etc/nginx/conf.d/default.conf 에 있습니다.
아래의 경로에 있는 default.conf 파일을 열어봅니다.
[root@NGINX /]# vi /etc/nginx/conf.d/default.conf
현재 보여지는 설정은 기본 설치 후 설정입니다.
각종 설정들이 주석처리 되어있지만 필요에 의해 주석을 해제하고 사용하면 됩니다.
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/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 /usr/share/nginx/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;
#}
}
80포트로 방화벽이 걸려있으면 아래와 같이 80포트 방화벽을 열어줍니다.
firewall-cmd --permanent --zone=public --add-port=80/tcp
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
nginx 자동시작 설정을 합니다.
systemctl enable nginx
[root@NGINX /]# systemctl enable nginx
Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service, pointing to /usr/lib/systemd/system/nginx.service.
nginx를 시작합니다.
systemctl start nginx
방화벽을 reload합니다.
firewall-cmd --reload
그외 명령어와 설정파일들 위치 입니다.
- nginx 관련 명령어
서버 시작 : sudo systemctl start nginx
서버 자동 시작 등록 : sudo systemctl enable nginx
서버 상태 확인 : sudo systemctl status nginx
서버 정지 : sudo systemctl stop nginx
서버 재시작 : sudo systemctl restart nginx
설정 리로드 : sudo systemctl reload nginx
- nginx 설정파일
/etc/nginx/ : nginx 설정파일 디렉토리
/etc/nginx/nginx.conf : 메인 설정파일(접속자 수, 동작 프로세스 수 등 퍼포먼스에 대한 설정)
/etc/nginx/conf.d/ : nginx.conf에서 불러들일 수 있는 파일 저장
/etc/nginx/fastcgi.conf : FastCGI 환경설정 파일
/etc/nginx/sites-available/ : 비활성화된 사이트 파일
/etc/nginx/sites-enabled/ : 활성화된 사이트 파일
'프로그래밍 > Server' 카테고리의 다른 글
[Server] MacOS X ELK Stack 구성하기 #1 설치 (2) | 2021.04.15 |
---|---|
[Server] Linux 운영체제 및 버전 확인 방법 (0) | 2021.04.15 |
[CentOS] yum firewall 설치 (0) | 2020.07.26 |
[AWS] AWS SSH 접속 및 간편접속 설정 (0) | 2020.05.23 |
[AWS] AWS 고정IP EIP 할당 (0) | 2020.05.22 |