|
Revision 2929, 1.6 kB
(checked in by fumiakiy, 16 months ago)
|
|
Merging feature-no-make-me branch to trunk.
|
-
Property svn:keywords set to
Author Date Id Revision
|
| Rev | Line | |
|---|
| [1098] | 1 | ## Movable Type configuration file ## |
|---|
| 2 | ## ## |
|---|
| 3 | ## This file defines system-wide settings for Movable Type ## |
|---|
| 4 | ## In total, there are over a hundred options, but only those ## |
|---|
| 5 | ## critical for everyone are listed below. ## |
|---|
| 6 | ## ## |
|---|
| 7 | ## Information on all others can be found at: ## |
|---|
| [1994] | 8 | ## http://www.movabletype.org/documentation/appendices/config-directives/ ## |
|---|
| [1098] | 9 | |
|---|
| 10 | ################################################################ |
|---|
| 11 | ##################### REQUIRED SETTINGS ######################## |
|---|
| 12 | ################################################################ |
|---|
| 13 | |
|---|
| 14 | # The CGIPath is the URL to your Movable Type directory |
|---|
| 15 | CGIPath http://www.example.com/cgi-bin/mt/ |
|---|
| 16 | |
|---|
| 17 | # The StaticWebPath is the URL to your mt-static directory |
|---|
| 18 | # Note: Check the installation documentation to find out |
|---|
| 19 | # whether this is required for your environment. If it is not, |
|---|
| 20 | # simply remove it or comment out the line by prepending a "#". |
|---|
| 21 | StaticWebPath http://www.example.com/mt-static |
|---|
| 22 | |
|---|
| 23 | #================ DATABASE SETTINGS ================== |
|---|
| 24 | # REMOVE all sections below that refer to databases |
|---|
| 25 | # other than the one you will be using. |
|---|
| 26 | |
|---|
| 27 | ##### MYSQL ##### |
|---|
| 28 | ObjectDriver DBI::mysql |
|---|
| 29 | Database DATABASE_NAME |
|---|
| 30 | DBUser DATABASE_USERNAME |
|---|
| 31 | DBPassword DATABASE_PASSWORD |
|---|
| 32 | DBHost localhost |
|---|
| 33 | |
|---|
| 34 | ##### POSTGRESQL ##### |
|---|
| 35 | ObjectDriver DBI::postgres |
|---|
| 36 | Database DATABASE_NAME |
|---|
| 37 | DBUser DATABASE_USERNAME |
|---|
| 38 | DBPassword DATABASE_PASSWORD |
|---|
| 39 | DBHost localhost |
|---|
| 40 | |
|---|
| 41 | ##### SQLITE ##### |
|---|
| 42 | ObjectDriver DBI::sqlite |
|---|
| 43 | Database /path/to/sqlite/database/file |
|---|
| 44 | |
|---|