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;
    #}
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章