일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- AWS
- jquery
- NGINX
- 작업물
- 메모
- linux #centos
- centOS
- Backend
- 네이버싫어
- 보안
- 에러해결
- php-fpm
- error
- 일상
- ratchet
- 코딩테스트
- centOS7
- MySQL
- 카카오가고싶다
- vagrant
- 기타정리
- 키워드
- 시벌이슈
- php
- laravel
- 키워드 정리
- php artisan
- 개인공부
- 작업물 #영상편집 #서브컬쳐
- 복습 #회사
- Today
- Total
목록NGINX (2)
개발을 간바루Joy 하게
nginx 설치후에 위와같은 에러가 발생 하기도 합니다. error 로그를 확인하면 권한이 없다고 나옵니다. //해결방법 1. /etc/nginx/conf.d/xxxx.conf. 확인 //... root [경로확인] //... 루트경로가 올바르게 잡혀있는지 확인합니다. 2.root 그룹,권한 확인 /etc/nginx/nginx.conf 설정에 있는 그룹으로 설정되어있는지 읽을수 있는 권한으로 잡혀있는지 확인해줍니다. chmod -R 755 [디렉토리명] //디렉토리 하위에있는 모든파일 권한변경 chown -R [사용자]:[그룹] [디렉토리명] //디렉토리 하위에있는 모든파일 사용자변경 3. /etc/nginx/nginx.conf 수정 #user nginx; user xxxxx; worker_process..
//nginx 설치 확인 nginx -v nginx 설치가 되어있는지 확인합니다. //nginx 설정 vi /etc/nginx/conf.d/default.conf server { listen 80; server_name server_domain_name_or_IP; access_log /var/log/nginx/[로그이름].access.log; error_log /var/log/nginx/[로그이름].error.log; root /usr/share/nginx/html; index index.php index.html index.htm; location / { try_files $uri $uri/ =404; } error_page 404 /404.html; error_page 500 502 503 504 ..