root/trunk/mt-config.cgi-original @ 2929

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
RevLine 
[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
15CGIPath    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 "#".
21StaticWebPath    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 #####
28ObjectDriver DBI::mysql
29Database DATABASE_NAME
30DBUser DATABASE_USERNAME
31DBPassword DATABASE_PASSWORD
32DBHost localhost
33
34##### POSTGRESQL #####
35ObjectDriver DBI::postgres
36Database DATABASE_NAME
37DBUser DATABASE_USERNAME
38DBPassword DATABASE_PASSWORD
39DBHost localhost
40
41##### SQLITE #####
42ObjectDriver DBI::sqlite
43Database /path/to/sqlite/database/file
44
Note: See TracBrowser for help on using the browser.