74 | | ==== Version Control System ==== |
75 | | |
76 | | ===== Subversion ===== |
77 | | * [http://subversion.apache.org/ Subversion], 1.5.x or 1.6.x and the '''''corresponding''''' Python bindings. Older versions starting from 1.4.0, etc. should still work. For troubleshooting information, check the [trac:TracSubversion#Troubleshooting TracSubversion] page. Versions prior to 1.4.0 won't probably work since trac uses svn core functionality (e.g. svn_path_canonicalize) that is not implemented in the python swig wrapper in svn <= 1.3.x (although it exists in the svn lib itself). |
78 | | |
79 | | There are [http://subversion.apache.org/packages.html pre-compiled SWIG bindings] available for various platforms. (Good luck finding precompiled SWIG bindings for any Windows package at that listing. TracSubversion points you to [http://alagazam.net Algazam], which works for me under Python 2.6.) |
80 | | |
81 | | Note that Trac '''doesn't''' use [http://pysvn.tigris.org/ PySVN], neither does it work yet with the newer `ctype`-style bindings. [Is there a ticket for implementing ctype bindings?] |
82 | | |
83 | | |
84 | | '''Please note:''' if using Subversion, Trac must be installed on the '''same machine'''. Remote repositories are currently [trac:ticket:493 not supported]. |
85 | | |
86 | | |
87 | | ===== Others ===== |
88 | | |
89 | | Support for other version control systems is provided via third-parties. See [trac:PluginList] and [trac:VersioningSystemBackend]. |
90 | | |
91 | | ==== Web Server ==== |
92 | | A web server is optional because Trac is shipped with a server included, see the [#RunningtheStandaloneServer Running the Standalone Server ] section below. |
93 | | |
94 | | Alternatively you configure Trac to run in any of the following environments. |
| 50 | ==== Subversion |
| 51 | |
| 52 | [http://subversion.apache.org/ Subversion], 1.6.x or later and the '''''corresponding''''' Python bindings. |
| 53 | |
| 54 | There are [http://subversion.apache.org/packages.html pre-compiled SWIG bindings] available for various platforms. (Good luck finding precompiled SWIG bindings for any Windows package at that listing. [trac:TracSubversion] points you to [http://alagazam.net Alagazam], which works for me under Python 2.6.) |
| 55 | |
| 56 | For troubleshooting information, see the [trac:TracSubversion#Troubleshooting TracSubversion] page. |
| 57 | |
| 58 | {{{#!div style="border: 1pt dotted; margin: 1em" |
| 59 | **Note:** |
| 60 | * Trac '''doesn't''' use [http://pysvn.tigris.org/ PySVN], nor does it work yet with the newer `ctype`-style bindings. |
| 61 | * If using Subversion, Trac must be installed on the '''same machine'''. Remote repositories are currently [trac:ticket:493 not supported]. |
| 62 | }}} |
| 63 | |
| 64 | ==== Git |
| 65 | |
| 66 | [http://git-scm.com/ Git] 1.5.6 or later is supported. More information is available on the [trac:TracGit] page. |
| 67 | |
| 68 | ==== Other Version Control Systems |
| 69 | |
| 70 | Support for other version control systems is provided via third-party plugins. See [trac:PluginList#VersionControlSystems] and [trac:VersionControlSystem]. |
| 71 | |
| 72 | ==== Web Server |
| 73 | A web server is optional because Trac is shipped with a server included, see the [#RunningtheStandaloneServer Running the Standalone Server] section below. |
| 74 | |
| 75 | Alternatively you can configure Trac to run in any of the following environments: |
134 | | - first install of the latest stable version Trac 0.12.1, with i18n support: |
135 | | {{{ |
136 | | easy_install Babel==0.9.5 Genshi==0.6 |
137 | | easy_install Trac |
138 | | }}} |
139 | | ''It's very important to run the two `easy_install` commands separately, otherwise the message catalogs won't be generated.'' |
140 | | |
141 | | - upgrade to the latest stable version of Trac: |
142 | | {{{ |
143 | | easy_install -U Trac |
144 | | }}} |
145 | | |
146 | | - upgrade to the latest trunk development version (0.13dev): |
147 | | {{{ |
148 | | easy_install -U Trac==dev |
149 | | }}} |
150 | | |
151 | | For upgrades, reading the TracUpgrade page is mandatory, of course. |
152 | | |
153 | | === From source |
154 | | If you want more control, you can download the source in archive form, or do a checkout from one of the official [[Trac:TracRepositories|source code repositories]]. |
155 | | |
156 | | Be sure to have the prerequisites already installed. You can also obtain the Genshi and Babel source packages from http://www.edgewall.org and follow for them a similar installation procedure, or you can just easy_install those, see [#Usingeasy_install above]. |
157 | | |
158 | | Once you've unpacked the Trac archive or performed the checkout, move in the top-level folder and do: |
159 | | {{{ |
160 | | $ python ./setup.py install |
161 | | }}} |
162 | | |
163 | | ''You'll need root permissions or equivalent for this step.'' |
164 | | |
165 | | This will byte-compile the python source code and install it as an .egg file or folder in the `site-packages` directory |
166 | | of your Python installation. The .egg will also contain all other resources needed by standard Trac, such as htdocs and templates. |
167 | | |
168 | | The script will also install the [wiki:TracAdmin trac-admin] command-line tool, used to create and maintain [wiki:TracEnvironment project environments], as well as the [wiki:TracStandalone tracd] standalone server. |
169 | | |
170 | | If you install from source and want to make Trac available in other languages, make sure Babel is installed. Only then, perform the `install` (or simply redo the `install` once again afterwards if you realize Babel was not yet installed): |
171 | | {{{ |
172 | | $ python ./setup.py install |
173 | | }}} |
174 | | Alternatively, you can do a `bdist_egg` and copy the .egg from dist/ to the place of your choice, or you can create a Windows installer (`bdist_wininst`). |
175 | | |
176 | | === Advanced Options === |
177 | | |
178 | | To install Trac to a custom location, or find out about other advanced installation options, run: |
179 | | {{{ |
180 | | easy_install --help |
181 | | }}} |
182 | | |
183 | | Also see [http://docs.python.org/inst/inst.html Installing Python Modules] for detailed information. |
184 | | |
185 | | Specifically, you might be interested in: |
186 | | {{{ |
187 | | easy_install --prefix=/path/to/installdir |
188 | | }}} |
189 | | or, if installing Trac to a Mac OS X system: |
190 | | {{{ |
191 | | easy_install --prefix=/usr/local --install-dir=/Library/Python/2.5/site-packages |
192 | | }}} |
193 | | Note: If installing on Mac OS X 10.6 running {{{ easy_install http://svn.edgewall.org/repos/trac/trunk }}} will install into {{{ /usr/local }}} and {{{ /Library/Python/2.6/site-packages }}} by default |
194 | | |
195 | | The above will place your `tracd` and `trac-admin` commands into `/usr/local/bin` and will install the Trac libraries and dependencies into `/Library/Python/2.5/site-packages`, which is Apple's preferred location for third-party Python application installations. |
| 117 | - Install the latest stable version of Trac: |
| 118 | {{{#!sh |
| 119 | $ easy_install Trac |
| 120 | }}} |
| 121 | - Install latest development version: |
| 122 | {{{#!sh |
| 123 | $ easy_install http://download.edgewall.org/trac/Trac-latest-dev.tar.gz |
| 124 | }}} |
| 125 | Note that in this case you won't have the possibility to run a localized version of Trac; |
| 126 | either use a released version or install from source |
| 127 | |
| 128 | More information can be found on the [trac:wiki:setuptools setuptools] page. |
| 129 | |
| 130 | {{{#!div style="border: 1pt dotted; margin: 1em" |
| 131 | **Setuptools Warning:** If the version of your setuptools is in the range 5.4 through 5.6, the environment variable `PKG_RESOURCES_CACHE_ZIP_MANIFESTS` must be set in order to avoid significant performance degradation. More information may be found in [#DeployingTrac Deploying Trac]. |
| 132 | }}} |
209 | | {{{ |
210 | | pip -E /opt/user/trac install trac mysql-python |
211 | | }}} |
212 | | |
213 | | Make sure your OS specific headers are available for pip to automatically build PostgreSQL (libpq-dev) or MySQL (libmysqlclient-dev) bindings. |
214 | | |
215 | | pip will automatically resolve all dependencies (like Genshi, pygments, etc.) and download the latest packages on pypi.python.org and create a self contained installation in /opt/user/trac . |
216 | | |
217 | | All commands (tracd, trac-admin) are available in /opt/user/trac/bin. This can also be leveraged for mod_python (using !PythonHandler directive) and mod_wsgi (using WSGIDaemonProcess directive) |
218 | | |
219 | | Additionally, you can install several trac plugins (listed [http://pypi.python.org/pypi?:action=search&term=trac&submit=search here]) through pip. |
220 | | |
221 | | |
222 | | |
223 | | == Creating a Project Environment == |
224 | | |
225 | | A [TracEnvironment Trac environment] is the backend storage where Trac stores information like wiki pages, tickets, reports, settings, etc. An environment is basically a directory that contains a human-readable [TracIni configuration file], and various other files and directories. |
226 | | |
227 | | A new environment is created using [wiki:TracAdmin trac-admin]: |
228 | | {{{ |
| 146 | {{{#!sh |
| 147 | pip install trac mysql-python |
| 148 | }}} |
| 149 | |
| 150 | Make sure your OS specific headers are available for pip to automatically build PostgreSQL (`libpq-dev`) or MySQL (`libmysqlclient-dev`) bindings. |
| 151 | |
| 152 | pip will automatically resolve all dependencies (like Genshi, pygments, etc.), download the latest packages from pypi.python.org and create a self contained installation in `/opt/user/trac`. |
| 153 | |
| 154 | All commands (`tracd`, `trac-admin`) are available in `/opt/user/trac/bin`. This can also be leveraged for `mod_python` (using `PythonHandler` directive) and `mod_wsgi` (using `WSGIDaemonProcess` directive) |
| 155 | |
| 156 | Additionally, you can install several Trac plugins (listed [https://pypi.python.org/pypi?:action=browse&show=all&c=516 here]) through pip. |
| 157 | |
| 158 | === From source |
| 159 | Using the python-typical setup at the top of the source directory also works. You can obtain the source for a .tar.gz or .zip file corresponding to a release (e.g. `Trac-1.0.tar.gz`) from the [trac:TracDownload] page, or you can get the source directly from the repository. See [trac:TracRepositories#OfficialSubversionrepository TracRepositories] for details. |
| 160 | |
| 161 | {{{#!sh |
| 162 | $ python ./setup.py install |
| 163 | }}} |
| 164 | |
| 165 | ''You will need root permissions or equivalent for this step.'' |
| 166 | |
| 167 | This will byte-compile the Python source code and install it as an .egg file or folder in the `site-packages` directory |
| 168 | of your Python installation. The .egg will also contain all other resources needed by standard Trac, such as `htdocs` and `templates`. |
| 169 | |
| 170 | If you install from source and want to make Trac available in other languages, make sure Babel is installed. Only then, perform the `install` (or simply redo the `install` once again afterwards if you realize Babel was not yet installed): |
| 171 | {{{#!sh |
| 172 | $ python ./setup.py install |
| 173 | }}} |
| 174 | Alternatively, you can run `bdist_egg` and copy the .egg from `dist/` to the place of your choice, or you can create a Windows installer (`bdist_wininst`). |
| 175 | |
| 176 | === Using installer |
| 177 | |
| 178 | On Windows, Trac can be installed using the exe installers available on the [trac:TracDownload] page. Installers are available for the 32-bit and 64-bit versions of Python. Make sure to use the installer that matches the architecture of your Python installation. |
| 179 | |
| 180 | === Using package manager |
| 181 | |
| 182 | Trac may be available in your platform's package repository. Note however, that the version provided by your package manager may not be the latest release. |
| 183 | |
| 184 | === Advanced `easy_install` Options |
| 185 | |
| 186 | To install Trac to a custom location, or find out about other advanced installation options, run: |
| 187 | {{{#!sh |
| 188 | easy_install --help |
| 189 | }}} |
| 190 | |
| 191 | Also see [http://docs.python.org/2/install/index.html Installing Python Modules] for detailed information. |
| 192 | |
| 193 | Specifically, you might be interested in: |
| 194 | {{{#!sh |
| 195 | easy_install --prefix=/path/to/installdir |
| 196 | }}} |
| 197 | or, if installing Trac on a Mac OS X system: |
| 198 | {{{#!sh |
| 199 | easy_install --prefix=/usr/local --install-dir=/Library/Python/2.6/site-packages |
| 200 | }}} |
| 201 | |
| 202 | {{{#!div style="border: 1pt dotted; margin: 1em" |
| 203 | **Mac OS X Note:** On Mac OS X 10.6, running `easy_install trac` will install into `/usr/local` and `/Library/Python/2.6/site-packages` by default. |
| 204 | |
| 205 | The `tracd` and `trac-admin` commands will be placed in `/usr/local/bin` and will install the Trac libraries and dependencies into `/Library/Python/2.6/site-packages`, which is Apple's preferred location for third-party Python application installations. |
| 206 | }}} |
| 207 | |
| 208 | == Creating a Project Environment |
| 209 | |
| 210 | A [TracEnvironment Trac environment] is the backend where Trac stores information like wiki pages, tickets, reports, settings, etc. An environment is a directory that contains a human-readable [TracIni configuration file], and other files and directories. |
| 211 | |
| 212 | A new environment is created using [TracAdmin trac-admin]: |
| 213 | {{{#!sh |
263 | | == Running Trac on a Web Server == |
264 | | |
265 | | Trac provides various options for connecting to a "real" web server: [wiki:TracCgi CGI], [wiki:TracFastCgi FastCGI], [wiki:TracModWSGI mod_wsgi] and [wiki:TracModPython mod_python]. For decent performance, it is recommended that you use either FastCGI or mod_wsgi. |
266 | | |
267 | | Trac also supports [trac:TracOnWindowsIisAjp AJP] which may be your choice if you want to connect to IIS. |
268 | | |
269 | | ==== Generating the Trac cgi-bin directory ==== |
270 | | |
271 | | In order for Trac to function properly with FastCGI you need to have a `trac.fcgi` file and for mod_wsgi a `trac.wsgi` file. These are Python scripts which load the appropriate Python code. They can be generated using the `deploy` option of [wiki:TracAdmin trac-admin]. |
272 | | |
273 | | There is, however, a bit of a chicken-and-egg problem. The [wiki:TracAdmin trac-admin] command requires an existing environment to function, but complains if the deploy directory already exists. This is a problem, because environments are often stored in a subdirectory of the deploy. The solution is to do something like this: |
274 | | {{{ |
| 270 | === Running Trac on a Web Server |
| 271 | |
| 272 | Trac provides various options for connecting to a "real" web server: |
| 273 | - [TracFastCgi FastCGI] |
| 274 | - [wiki:TracModWSGI Apache with mod_wsgi] |
| 275 | - [TracModPython Apache with mod_python] |
| 276 | - //[TracCgi CGI] (should not be used, as the performance is far from optimal)// |
| 277 | |
| 278 | Trac also supports [trac:TracOnWindowsIisAjp AJP] which may be your choice if you want to connect to IIS. Other deployment scenarios are possible: [trac:TracNginxRecipe nginx], [http://projects.unbit.it/uwsgi/wiki/Example#Traconapacheinasub-uri uwsgi], [trac:TracOnWindowsIisIsapi Isapi-wsgi] etc. |
| 279 | |
| 280 | ==== Generating the Trac cgi-bin directory #cgi-bin |
| 281 | |
| 282 | In order for Trac to function properly with FastCGI you need to have a `trac.fcgi` file and for mod_wsgi a `trac.wsgi` file. These are Python scripts which load the appropriate Python code. They can be generated using the `deploy` option of [TracAdmin trac-admin]. |
| 283 | |
| 284 | There is, however, a bit of a chicken-and-egg problem. The [TracAdmin trac-admin] command requires an existing environment to function, but complains if the deploy directory already exists. This is a problem, because environments are often stored in a subdirectory of the deploy. The solution is to do something like this: |
| 285 | {{{#!sh |
280 | | |
281 | | ==== Setting up the Plugin Cache ==== |
282 | | |
283 | | Some Python plugins need to be extracted to a cache directory. By default the cache resides in the home directory of the current user. When running Trac on a Web Server as a dedicated user (which is highly recommended) who has no home directory, this might prevent the plugins from starting. To override the cache location you can set the PYTHON_EGG_CACHE environment variable. Refer to your server documentation for detailed instructions on how to set environment variables. |
284 | | |
285 | | == Configuring Authentication == |
286 | | |
287 | | The process of adding, removing, and configuring user accounts for authentication depends on the specific way you run Trac. The basic procedure is described in the [wiki:TracCgi#AddingAuthentication "Adding Authentication"] section on the TracCgi page. To learn how to setup authentication for the frontend you're using, please refer to one of the following pages: |
288 | | |
289 | | * TracStandalone if you use the standalone server, `tracd`. |
290 | | * TracCgi if you use the CGI or FastCGI web front ends. |
291 | | * [wiki:TracModWSGI] if you use the Apache mod_wsgi web front end. |
292 | | * TracModPython if you use the Apache mod_python web front end. |
293 | | |
294 | | |
295 | | == Automatic reference to the SVN changesets in Trac tickets == |
296 | | |
297 | | You can configure SVN to automatically add a reference to the changeset into the ticket comments, whenever changes are committed to the repository. The description of the commit needs to contain one of the following formulas: |
298 | | * '''`Refs #123`''' - to reference this changeset in `#123` ticket |
299 | | * '''`Fixes #123`''' - to reference this changeset and close `#123` ticket with the default status ''fixed'' |
300 | | |
301 | | This functionality requires a post-commit hook to be installed as described in [wiki:TracRepositoryAdmin#ExplicitSync TracRepositoryAdmin], and enabling the optional commit updater components by adding the following line to the `[components]` section of your [wiki:TracIni#components-section trac.ini], or enabling the components in the "Plugins" admin panel. |
302 | | {{{ |
303 | | tracopt.ticket.commit_updater.* = enabled |
304 | | }}} |
305 | | For more information, see the documentation of the `CommitTicketUpdater` component in the "Plugins" admin panel. |
306 | | |
307 | | == Using Trac == |
| 291 | Don't forget to check that the web server has the execution right on scripts in the `/usr/share/trac/cgi-bin` directory. |
| 292 | |
| 293 | ==== Mapping Static Resources |
| 294 | |
| 295 | Without additional configuration, Trac will handle requests for static resources such as stylesheets and images. For anything other than a TracStandalone deployment, this is not optimal as the web server can be set up to directly serve the static resources. For CGI setup, this is '''highly undesirable''' as it causes abysmal performance. |
| 296 | |
| 297 | Web servers such as [http://httpd.apache.org/ Apache] allow you to create //Aliases// to resources, giving them a virtual URL that doesn't necessarily reflect their location on the file system. We can map requests for static resources directly to directories on the file system, to avoid Trac processing the requests. |
| 298 | |
| 299 | There are two primary URL paths for static resources: `/chrome/common` and `/chrome/site`. Plugins can add their own resources, usually accessible at the `/chrome/<plugin>` path. |
| 300 | |
| 301 | A single `/chrome` alias can used if the static resources are extracted for all plugins. This means that the `deploy` command must be executed after installing or updating a plugin that provides static resources, or after modifying resources in the `$env/htdocs` directory. This is probably appropriate for most installations but may not be what you want if, for example, you wish to upload plugins through the //Plugins// administration page. |
| 302 | |
| 303 | The resources are extracted using the [TracAdmin trac-admin]` <environment> deploy` command: |
| 304 | [[TracAdminHelp(deploy)]] |
| 305 | |
| 306 | The target `<directory>` will contain an `htdocs` directory with: |
| 307 | - `common/` - the static resources of Trac |
| 308 | - `site/` - a copy of the environment's `htdocs/` directory |
| 309 | - `shared` - the static resources shared by multiple Trac environments, with a location defined by the `[inherit]` `htdocs_dir` option |
| 310 | - `<plugin>/` - one directory for each resource directory provided by the plugins enabled for this environment |
| 311 | |
| 312 | The example that follows will create a single `/chrome` alias. If that isn't the correct approach for your installation you simply need to create more specific aliases: |
| 313 | {{{#!apache |
| 314 | Alias /trac/chrome/common /path/to/trac/htdocs/common |
| 315 | Alias /trac/chrome/site /path/to/trac/htdocs/site |
| 316 | Alias /trac/chrome/shared /path/to/trac/htdocs/shared |
| 317 | Alias /trac/chrome/<plugin> /path/to/trac/htdocs/<plugin> |
| 318 | }}} |
| 319 | |
| 320 | ===== Example: Apache and `ScriptAlias` #ScriptAlias-example |
| 321 | |
| 322 | Assuming the deployment has been done this way: |
| 323 | {{{#!sh |
| 324 | $ trac-admin /var/trac/env deploy /path/to/shared/trac |
| 325 | }}} |
| 326 | |
| 327 | Add the following snippet to Apache configuration, changing paths to match your deployment. The snippet must be placed ''before'' the `ScriptAlias` or `WSGIScriptAlias` directive, because those directives map all requests to the Trac application: |
| 328 | {{{#!apache |
| 329 | Alias /trac/chrome /path/to/trac/htdocs |
| 330 | |
| 331 | <Directory "/path/to/www/trac/htdocs"> |
| 332 | # For Apache 2.2 |
| 333 | <IfModule !mod_authz_core.c> |
| 334 | Order allow,deny |
| 335 | Allow from all |
| 336 | </IfModule> |
| 337 | # For Apache 2.4 |
| 338 | <IfModule mod_authz_core.c> |
| 339 | Require all granted |
| 340 | </IfModule> |
| 341 | </Directory> |
| 342 | }}} |
| 343 | |
| 344 | If using mod_python, add this too, otherwise the alias will be ignored: |
| 345 | {{{#!apache |
| 346 | <Location "/trac/chrome/common"> |
| 347 | SetHandler None |
| 348 | </Location> |
| 349 | }}} |
| 350 | |
| 351 | Alternatively, if you wish to serve static resources directly from your project's `htdocs` directory rather than the location to which the files are extracted with the `deploy` command, you can configure Apache to serve those resources. Again, put this ''before'' the `ScriptAlias` or `WSGIScriptAlias` for the .*cgi scripts, and adjust names and locations to match your installation: |
| 352 | {{{#!apache |
| 353 | Alias /trac/chrome/site /path/to/projectenv/htdocs |
| 354 | |
| 355 | <Directory "/path/to/projectenv/htdocs"> |
| 356 | # For Apache 2.2 |
| 357 | <IfModule !mod_authz_core.c> |
| 358 | Order allow,deny |
| 359 | Allow from all |
| 360 | </IfModule> |
| 361 | # For Apache 2.4 |
| 362 | <IfModule mod_authz_core.c> |
| 363 | Require all granted |
| 364 | </IfModule> |
| 365 | </Directory> |
| 366 | }}} |
| 367 | |
| 368 | Another alternative to aliasing `/trac/chrome/common` is having Trac generate direct links for those static resources (and only those), using the [[TracIni#trac-section| [trac] htdocs_location]] configuration setting: |
| 369 | {{{#!ini |
| 370 | [trac] |
| 371 | htdocs_location = http://static.example.org/trac-common/ |
| 372 | }}} |
| 373 | |
| 374 | Note that this makes it easy to have a dedicated domain serve those static resources, preferentially cookie-less. |
| 375 | |
| 376 | Of course, you still need to make the Trac `htdocs/common` directory available through the web server at the specified URL, for example by copying (or linking) the directory into the document root of the web server: |
| 377 | {{{#!sh |
| 378 | $ ln -s /path/to/trac/htdocs/common /var/www/static.example.org/trac-common |
| 379 | }}} |
| 380 | |
| 381 | ==== Setting up the Plugin Cache |
| 382 | |
| 383 | Some Python plugins need to be extracted to a cache directory. By default the cache resides in the home directory of the current user. When running Trac on a Web Server as a dedicated user (which is highly recommended) who has no home directory, this might prevent the plugins from starting. To override the cache location you can set the `PYTHON_EGG_CACHE` environment variable. Refer to your server documentation for detailed instructions on how to set environment variables. |
| 384 | |
| 385 | == Configuring Authentication |
| 386 | |
| 387 | Trac uses HTTP authentication. You'll need to configure your webserver to request authentication when the `.../login` URL is hit (the virtual path of the "login" button). Trac will automatically pick the `REMOTE_USER` variable up after you provide your credentials. Therefore, all user management goes through your web server configuration. Please consult the documentation of your web server for more info. |
| 388 | |
| 389 | The process of adding, removing, and configuring user accounts for authentication depends on the specific way you run Trac. |
| 390 | |
| 391 | Please refer to one of the following sections: |
| 392 | * TracStandalone#UsingAuthentication if you use the standalone server, `tracd`. |
| 393 | * [wiki:TracModWSGI#ConfiguringAuthentication TracModWSGI#ConfiguringAuthentication] if you use the Apache web server, with any of its front end: `mod_wsgi`, `mod_python`, `mod_fcgi` or `mod_fastcgi`. |
| 394 | * TracFastCgi if you're using another web server with FCGI support (Cherokee, Lighttpd, !LiteSpeed, nginx) |
| 395 | |
| 396 | [trac:TracAuthenticationIntroduction] also contains some useful information for beginners. |
| 397 | |
| 398 | == Granting admin rights to the admin user |
| 399 | Grant admin rights to user admin: |
| 400 | {{{#!sh |
| 401 | $ trac-admin /path/to/myproject permission add admin TRAC_ADMIN |
| 402 | }}} |
| 403 | |
| 404 | This user will have an //Admin// navigation item that directs to pages for administering your Trac project. |
| 405 | |
| 406 | == Configuring Trac |
| 407 | |
| 408 | TracRepositoryAdmin provides information on configuring version control repositories for your project. |
| 409 | |
| 410 | == Using Trac |