Linux/Nginx3 nginx 디렉토리 형식으로 보이게 ### nginx web 에서 디렉토리 형식으로 보이게 설정 server { listen80; server_namelocalhost; location / { root/home/test; autoindexon; autoindex_localtimeon; } } 2023. 12. 23. nginx default conf #### Nginx default conf file user nginx; worker_processes 4; ## cpu core 수 error_log/var/log/nginx/error.log; pid /run/nginx.pid # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 2048; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$h.. 2023. 12. 23. 리눅스 nginx 설치 #### yum 을 이용한 간단 nginx 설치 1. epel 설치 yum install -y epel-release yum repolist 2. nginx 설치 yum install -y nginx 2020. 6. 1. 이전 1 다음