-
nginx 기본 설정nginx 2017. 11. 11. 15:55
mac 기준
server {
listen 8050;
server_name 테스트도메인;
root /php/작업폴더;
autoindex on;
index index.php;
error_log /php/작업폴더/logs/error.log debug;
location / {
try_files $uri $uri/ /index.php;
include /usr/local/etc/nginx/conf.d/php-fpm;
}
location ~ \.php$ {
return 444;
}
}