您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何進行在線管理接口API工具ShowDoc環境搭建,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
以Centos6.6、通過yum安裝為例子。
首先你需要安裝web服務器,apache或者nginx中的一個(如果已安裝了請忽略),然后再安裝PHP環境配合使用
yum install httpd
yum install php php-gd php-mcrypt php-mbstring php-mysql php-pdo
service httpd start
chkconfig httpd on
安裝完畢后,默認的Apache Web目錄是/var/www/html
,將ShowDoc上傳并按照部署手冊安裝即可
yum install nginx
yum install php php-gd php-fpm php-mcrypt php-mbstring php-mysql php-pdo
安裝完后,在/etc/nginx/conf.d
新建文件127.0.0.1.conf
server {
listen 80;
server_name 127.0.0.1;
root /var/www/html;
index index.php index.html
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
location ~ \.php$ {
root /var/www/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
保存。然后執行命令:
service nginx start
service php-fpm start
chkconfig php-fpm on
chkconfig nginx on
然后進入目錄/var/www/html
(不存在則新建),將ShowDoc上傳并按照部署手冊(http://blog.star7th.com/2016/05/2007.html )安裝即可。安裝后便可通過瀏覽器訪問127.0.0.1
上述就是小編為大家分享的如何進行在線管理接口API工具ShowDoc環境搭建了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。