728x90
### nginx web 에서 디렉토리 형식으로 보이게 설정
server {
listen 80;
server_name localhost;
location / {
root /home/test;
autoindex on;
autoindex_localtime on;
}
}
'Linux > Nginx' 카테고리의 다른 글
nginx default conf (0) | 2023.12.23 |
---|---|
리눅스 nginx 설치 (0) | 2020.06.01 |