diff --git a/build/sae/config.yaml b/build/sae/config.yaml
index 262fbf5839..0bb3f31de6 100644
--- a/build/sae/config.yaml
+++ b/build/sae/config.yaml
@@ -1,7 +1,7 @@
name: zentao
version: 1
cron:
- - description: cron test
+ - description: cron
url: project-computeburn-admin.html
schedule: every day of month 00:00
timezone: Beijing
@@ -15,4 +15,3 @@ handle:
- expire: if(path ~ "\.png$") time 360000
- expire: if(path ~ "\.ico$") time 360000
- expire: if(path ~ "\.jpg$") time 360000
-
diff --git a/build/sae/my.php b/build/sae/my.php
new file mode 100755
index 0000000000..57ce5069dd
--- /dev/null
+++ b/build/sae/my.php
@@ -0,0 +1,31 @@
+installed = false;
+$config->debug = false;
+$config->requestType = 'PATH_INFO';
+
+$config->db->host = SAE_MYSQL_HOST_M;
+$config->db->slaveHost = SAE_MYSQL_HOST_S;
+$config->db->port = SAE_MYSQL_PORT;
+$config->db->name = SAE_MYSQL_DB;
+$config->db->user = SAE_MYSQL_USER;
+$config->db->password = SAE_MYSQL_PASS;
+$config->db->prefix = 'zt_';
+$config->db->checkCentOS = false;
+
+$config->slaveDB->host = SAE_MYSQL_HOST_S;
+$config->slaveDB->port = SAE_MYSQL_PORT;
+$config->slaveDB->name = SAE_MYSQL_DB;
+$config->slaveDB->user = SAE_MYSQL_USER;
+$config->slaveDB->password = SAE_MYSQL_PASS;
+$config->slaveDB->checkCentOS = false;
+
+$config->webRoot = '/';
+$config->default->domain = $_SERVER['HTTP_HOST'];
+$config->default->lang = 'zh-cn';
+
+$config->sae->storage->domain = 'zentao';
+
+$saeDB = new saemysql();
+$saeSQL = "SELECT COUNT(`id`) FROM `" . $config->db->prefix . "config` WHERE 1 LIMIT 0,10";
+if($saeDB->getData($saeSQL)) $config->installed = true;
+$saeDB->closeDb();
diff --git a/build/sae/sae_app_wizard.xml b/build/sae/sae_app_wizard.xml
new file mode 100755
index 0000000000..95bc3c794c
--- /dev/null
+++ b/build/sae/sae_app_wizard.xml
@@ -0,0 +1,47 @@
+
+ index.php
+
+
+