Computer Science/Nginx
-
Nginx detail 페이지 접근시 404 Not Found error 해결Computer Science/Nginx 2022. 8. 16. 23:22
nginx의 config 설정을 변경해주어야한다. nginx의 default.config는 대부분 /etc/nginx/conf.d 에 있다. 들어가서 server { listen 80; server_name localhost; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; index index.html index.htm; } location 부분을 location / { root /usr/share/nginx/html; index index.html index.htm; try_files $uri $uri/ /index.html; } try_files를 추가해준다.
-
aws nginx 설치 및 기본 명령어.Computer Science/Nginx 2022. 8. 1. 15:50
yum info nginx 초기에는 찾을수가 없어서 당연히 error 발생. sudo vi /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 nginx.repo 생성으로 repository 등록. yum info nginx 로 다시 한번 확인. sudo yum install nginx nginx -v ningx 시작. sudo systemctl start nginx ningx 중지. sudo systemctl stop nginx nginx 상태 확인. sudo systemctl status nginx