linux (centos) 에 쇼 doc 제3자 문서 협업 플랫폼 구축

3290 단어
회 사 는 내부 에 api 프로 토 콜 인터페이스 관 리 를 구축 하고 twiki, moinmoin 을 시 도 했 습 니 다. 마지막 으로 showdoc 를 선 택 했 습 니 다. 다음은 구체 적 인 구축 과정 입 니 다.
1 yum 으로 Nginx 설치:
yum install nginx
yum ngnix 가 설치 할 수 없 는 상황 을 만 날 수 있 습 니 다. (원인: ngnix 는 centos 공식 소스 에 없습니다. 자원 을 업데이트 하 십시오)
파일 epel - relase - 7 - 11. noarch. rpm 을 Liux 서버 에 업로드 하고 명령 을 수행 합 니 다.
rpm -ivh epel-release-7-11.noarch.rpm;

2. 수정 / etc / nginx / nginx. conf 파일 은 다음 과 같 습 니 다.
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;
    include /etc/nginx/conf.d/*.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;
        }
    }
}
3 Nginx 를 시작 하고 시작 으로 설정 합 니 다.
service nginx start
chkconfig nginx on
4 PHP 설치
yum install php php-gd php-fpm php-mcrypt php-mbstring php-mysql php-pdo

php - fpm 를 시작 하고 시작 으로 설정 합 니 다:
service php-fpm start	
chkconfig php-fpm on

5 항목 만 들 기
다운로드 설치 Composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer

명령 실행 설정 Composer 국내 미 러 사용
composer config -g repo.packagist composer https://packagist.phpcomposer.com

명령 실행 생 성 항목:
cd /var/www/html/ && composer create-project  showdoc/showdoc
쇼 doc 디 렉 터 리 쓰기 권한 설정
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
yum 설치 httpd 
yum install httpd

시작 항목
service httpd start;
생 성 이 완료 되 었 습 니 다. 브 라 우 저 를 통 해 접근 할 수 있 습 니 다.http://ip또는 사이트 주소 / showdoc / intal /, 언어 선택 후 통과 할 수 있 습 니 다.http://ip또는 사이트 주소 / showdoc 에서 사이트 효 과 를 봅 니 다.

좋은 웹페이지 즐겨찾기