반응형
1.conf파일 확인
# conf파일 위치까지 이동
cd /etc/nginx/conf.d/
# 이전에 있던 conf파일 복사 (cp original이름 복사할이름)
cp match_laravel.conf mag_dlv.conf
#해당부분 수정
Server_name => 도메인명
Root => 해당 프로젝트 public 위치
** conf파일 수정후엔 반드시 nginx 재시작
systemctl restart nginx
systemctl restart php-fpm (php재시작은 필수는아님, 혹시나)
#권한설정
chmod 755 storeage
chmod 755 bootstrap/cache
sudo chmod -R 777 storeage/log
mkdir -p bootstrap/cache
sudo chown -R nginx:nginx bootstrap/cache
mkdir -p storage/logs
mkdir -p storage/framework/cache
mkdir -p storage/framework/sessions
mkdir -p storage/framework/views
sudo chown -R nginx:nginx storage
*권한내용참고
반응형