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

Showdoc 搭建项目 API 系统

时间:2018-04-30 11:50:25      阅读:1714      评论:0      收藏:0      [点我收藏+]

标签:windows   linux   showdoc   php   api   

showdoc 是 PHP 开发的一款 api 文档系统,因此所需环境和普通 PHP 项目一致

准备环境:
php
nginx
composer //注意更换国内镜像,否则速度会很慢,甚至失败

创建项目

composer create-project showdoc/showdoc

配置 showdoc 写权限

chmod a+w showdoc/install
chmod a+w showdoc/Sqlite
chmod a+w showdoc/Sqlite/showdoc.db.php
chmod a+w showdoc/Public/Uploads/
chmod a+w showdoc/Application/Runtime
chmod a+w showdoc/server/Application/Runtime
chmod a+w showdoc/Application/Common/Conf/config.php
chmod a+w showdoc/Application/Home/Conf/config.php

配置服务器

下面的配置时windows环境,如果要使用linux ,注意可能需要修改一些配置项
#=== showdoc == 
 server {
         listen       80;
         server_name   showdoc.leesin.me;
         charset utf-8;
         #access_log  logs/host.access.log  main;
         root  E:\showdoc;
         index index.php index.html;
         if (!-e $request_filename) {
           rewrite  ^(.*)$  /index.php?s=/$1  last;
           break;
        }

         #error_page  404              /404.html;

         # redirect server error pages to the static page /50x.html
         #
         error_page   500 502 503 504  /50x.html;
                 location = /50x.html {
                 root   html;
         }
         location ~ \.php$ {
             fastcgi_pass   fastcgi_backend;  # linux无法使用这种方式,而是 127.0.0.1:9000方式
             fastcgi_index  index.php;
             include        fastcgi_params;
             fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
             fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
         }
 }

 配置 hosts 
    127.0.0.1   showdoc.leesin.me
 重启 nginx 服务

安装

浏览器输入: showdoc.leesin.me/install 
选择语言并确定,安装完成点击进入首页

访问使用

http://showdoc.leesin.me/web
即可使用

windows 本地环境中可能会出现验证码不显示的问题,楼主正在排查原因,后续会奉上

Showdoc 搭建项目 API 系统

标签:windows   linux   showdoc   php   api   

原文地址:http://blog.51cto.com/12750968/2109172

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