Codeigniter下配置nginx

来源:互联网 发布:淘宝网天猫女士九分裤 编辑:程序博客网 时间:2024/05/17 06:39
server {        listen 80;    server_name www.ci.com;        location / {    root   /Library/WebServer/Documents/www/ci;        index  index.html index.htm index.php;    try_files $uri $uri/ /index.php?$uri&$args;    }              location ~ \.php$ {            root           /Library/WebServer/Documents/www/ci;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_param  SCRIPT_FILENAME /Library/WebServer/Documents/www/ci$fastcgi_script_name;    include /usr/local/etc/nginx/fastcgi_params;        }        }

0 0
原创粉丝点击