码迷,mamicode.com
首页 > Windows程序 > 详细

将win共享目录挂载到linux 利用远程PHP-CGI调试本地代码

时间:2015-07-12 21:52:30      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:web php nginx

最近需要在win上做几个PHP项目,但又不想在win上搭建各种运行环境,正好局域网中有一台LINUX,所以将项目所需的环境全装在LINUX上,本地win上只需要一个NGINX做代理即可。


实现方式如下:

WIN:192.168.0.107

LINUX:192.168.0.108


一、在win下创建PHP项目目录c:/web,并设置为共享文件夹,共享名为web

技术分享


二、登录LINUX将WIN共享目录挂载到/mnt/web

mount -t cifs //192.168.0.107/web /mnt/web -o username=jxh,password=jxh,noserverinfo


三、修改PHP-FPM监听IP及端口

vim /usr/local/webserver/php/etc/php-fpm.conf

listen = 192.168.0.108:9000   #默认的127.0.0.1:9000不支持远程访问


四、在WIN上配置NGINX

server {
        listen       80;
        server_name  localhost;

        location / {
            root   C:/web;
            index  index.html index.htm;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        location ~ \.php$ {
            root           /mnt/web;
            fastcgi_pass   192.168.0.108:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /mnt/web$fastcgi_script_name;
            include        fastcgi_params;
        }

}


五、启动NGINX,使用localhost可访问c:/web/中的php代码




本文出自 “小兵yuri” 博客,请务必保留此出处http://87453343.blog.51cto.com/8606892/1673433

将win共享目录挂载到linux 利用远程PHP-CGI调试本地代码

标签:web php nginx

原文地址:http://87453343.blog.51cto.com/8606892/1673433

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!