Centos 7安装禅道

1. 安装nginx  --点击查看详情哦。
2. 安装mysql
3. 安装PHP环境
yum  install php

4. 安装 php的mysql支持
yum  install php-mysql

5. 安装php的其他支持
yum  install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-eaccelerator php-magickwand php-magpierss php-mbstring php-mcrypt php-mssql php-shout php-snmp php-soap php-tidy

6. 安装fpm
yum  install php-fpm -y

7. 启动php-fpm
service php-fpm start

8. 下载禅道zip包
wget http ://dl.zentao.net /6.0 /ZenTaoPMS.6.0.stable.zip

9. 解压禅道zip包
unzip ZenTaoPMS.6.0.stable.zip 

10. 配置nginx
server  {
    listen       80 ;
    server_name  zentao.songfayuan.com ;

     #charset koi8-r;
     #access_log  /var/log/nginx/host.access.log  main;

     #location / {
     #    root   /usr/share/nginx/html:;
     #    index  index.html index.htm;
     #}

     #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    /usr /share /nginx /html ;
     }

     # proxy the PHP scripts to Apache listening on 127.0.0.1:80
     #
     #location ~ \.php$ {
     #    proxy_pass   http://127.0.0.1;
     #}

     # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
     #
    location ~  \.php$  {
        root            /opt /zentaopms /www ;
        fastcgi_pass   127.0.0.1 :9000 ;
        fastcgi_index  index.php ;
        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name ;
        include        fastcgi_params ;
     }

    location ~ .* \. (gif |jpg |png |css |js |ico |htm |html |sp |xml |cfg |txt |woff |ttf ){
        root     /opt /zentaopms /www ;
     }

    location = /  {
        root     /opt /zentaopms /www ;
        index   index.php ;
     }


     # deny access to .htaccess files, if Apache's document root
     # concurs with nginx's one
     #
     #location ~ /\.ht {
     #    deny  all;
     #}
}

猜你喜欢

转载自blog.csdn.net/u011019141/article/details/78712353