Yii 애플리케이션 Apache의 구성은 비교적 간단합니다. nginx 구성은 주로 단일 항목 파일의 문제를 처리해야 하며 이는 Apache 구성의 다음 문장에 해당합니다.
# if a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # otherwise forward it to index.php RewriteRule . index.php을 번역해야 합니다. 해당 Nginx 명령어에 추가합니다. 예는 다음과 같습니다:
server { listen 80; server_name www.techbrood.com; access_log logs/techbrood.access.log; root /var/www/html/techbrood/web; location / { index index.php; if (!-e $request_filename){ rewrite ^/(.*) /index.php last; } } location ~ \.php(?|$) { #fastcgi(php-fpm) listening on 127.0.0.1:9000 root /var/www/html/techbrood/web; #your path to fastcgi_params file include /etc/nginx/conf/fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass 127.0.0.1:9000; #fastcgi_pass unix: /var/run/php-fpm.sock } location ~ \.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ { root /var/www/html/techbrood/web; } }
by iefreer
위 내용은 관련 내용을 포함하여 CentOS6 시스템의 Yii/Yii2/Nginx/PHP-FPM 구성 예제를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.