MxSrvs配置

MxSrvs下载地址 :http://www.xsrvs.com/index.html

******注意啊 建议大家去官网下载 本人刚开始在其他网站下载的是老版本,所以走了很多的弯路 建议在官网下载最新的版本 下载的时间有点长

接下来 我们首先需要停止mac自带的Apache ,PHP如果版本不一样的话可以不用卸载 反正我是没有卸载 只把Apache的服务停了

image.png

这个地方选择允许就行 最后开启Ngnix和PHP服务就可以了 因为他们是集成环境配套的,不然启动不了

image.png

点击配置编辑---- Nginx哪里,点击后面的那个+号

image.png

输入主机名称 (你的本地域名)

项目位置(选择你的项目位置,注意 集成环境的根目录是/Application/MxSrvs/www)

这样的话就会生成一个配置文件

注意 生成的这个配置文件是有问题的 例如你的入口文件是index.php是没有什么问题的 但是你的入口文件是其他的名称的话就会有问题,所以小编进行了优化 大家只需要复制粘贴就可以了

server {
    listen          80;
    server_name     yxh.com;
    root            /Applications/MxSrvs/www/work/xxxxx;
    #access_log     /Applications/MxSrvs/logs/xxx.com.log;
      location / {
            index index.php index.html error/index.html;
             #autoindex  on;
            if (!-e $request_filename) {
                rewrite ^/(.*)$ /index.php/$1;
            }
            error_page 400 /error/400.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 500 /error/500.html;
            error_page 501 /error/501.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            error_page 504 /error/504.html;
            error_page 505 /error/505.html;
            error_page 506 /error/506.html;
            error_page 507 /error/507.html;
            error_page 509 /error/509.html;
            error_page 510 /error/510.html;
            autoindex  off;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:10080;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
    
}

这样重启服务 完美运行

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。