dotcloud 部署 wordpress
安装环境并创建项目 首先在 dotcloud 网站注册,并记录 api key 。 安装 dotcloud 环境: $ sudo easy_install dotcloud 运行以下命令,根据提示输入 api key: $ dotcloud 创建项目: $ mkdir wordpress $ cd wordpress $ dotcloud create dormouse 创建以下内容的dotcloud.yml: www: type: php db: type: mysql 推送项目: dotcloud push dormouse 查看项目信息 全站信息: $ dotcloud info dormouse 显示以下内容: db: config: mysql_masterslave: true mysql_password: Y2##########CfUl89 instances: 1 type: mysql www: config: phpfpm_processes: 4 static: static instances: 1 type: php url: http://dormouse-dormouse.dotcloud.com/ www 信息:...