2016
06-23
06-23
windows 下 nginx php mysql环境搭建
安装nginx,
在conf下nginx.conf中添加include conf.d/*.conf;类似linux一样在文件夹conf.d下添加自定义配置。
添加
location ~ \.php$ {
root 项目路径;
fastcgi_pass 127.0.0.1:9000;
fas.... Read More >