'nginx php'에 해당되는 글 1건
- 2014.06.02 :: nginx php-fpm 설정
web server/nginx
2014. 6. 2. 18:46
다음과 같이 nginx.conf 파일에 추가한다.
location ~ \.(php|c2s|inc|lib)$ {
if ( $request_uri ~ "/file.php" ) {
access_log off;
}
root /var/www/html;
fastcgi_pass unix:/dev/shm/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
include fastcgi_params;
}
php 파일 호출 시 다운로드가 된다면 위 설정을 확인
'web server > nginx' 카테고리의 다른 글
connection processing methods (연결처리방법) - epoll, kqueue, poll (0) | 2014.08.06 |
---|---|
특정 파일 호출 시 access 로그 남기지 않게 하기 (0) | 2014.06.02 |
특정 요청만 access 로그 남기지 않게 하기 (0) | 2014.05.14 |
nginx worker 설정 (0) | 2014.04.18 |
nginx 로그 설정 (0) | 2014.04.18 |