David Pursehouse | 240fbff | 2016-08-25 09:58:15 +0900 | [diff] [blame] | 1 | # Configuration |
| 2 | |
| 3 | The `gitiles.config` file supporting the site contains several configuration |
| 4 | options. |
| 5 | |
| 6 | [TOC] |
| 7 | |
David Pursehouse | f701810 | 2016-08-25 10:10:23 +0900 | [diff] [blame^] | 8 | ## Core configuration |
| 9 | |
| 10 | ### Cross-Origin Resource Sharing (CORS) |
| 11 | |
| 12 | Gitiles sets the `Access-Control-Allow-Origin` header to the |
| 13 | HTTP origin of the client if the client's domain matches a regular |
| 14 | expression defined in `allowOriginRegex`. |
| 15 | |
| 16 | ``` |
| 17 | [gitiles] |
| 18 | allowOriginRegex = http://localhost |
| 19 | ``` |
| 20 | |
| 21 | By default `allowOriginRegex` is unset, denying all cross-origin requests. |
| 22 | |
David Pursehouse | 240fbff | 2016-08-25 09:58:15 +0900 | [diff] [blame] | 23 | ## Markdown |
| 24 | |
| 25 | ### Disabling markdown |
| 26 | |
| 27 | Markdown can be completely disabled by setting render to false. |
| 28 | |
| 29 | ``` |
| 30 | [markdown] |
| 31 | render = false |
| 32 | ``` |
| 33 | |
| 34 | ### Markdown size |
| 35 | |
| 36 | Markdown files are limited by default to 5 MiB of input text |
| 37 | per file. This limit is configurable, but should not be raised |
| 38 | beyond available memory. |
| 39 | |
| 40 | ``` |
| 41 | [markdown] |
| 42 | inputLimit = 5M |
| 43 | ``` |
| 44 | |
| 45 | ### Image size |
| 46 | |
| 47 | Referenced [images are inlined](#Images) as base64 encoded URIs. |
| 48 | The image limit places an upper bound on the byte size of input. |
| 49 | |
| 50 | ``` |
| 51 | [markdown] |
| 52 | imageLimit = 256K |
| 53 | ``` |
| 54 | |
| 55 | ## Google Analytics |
| 56 | |
| 57 | [Google Analytics](https://www.google.com/analytics/) can be |
| 58 | enabled on every rendered markdown page by adding the Property ID |
| 59 | to the configuration file: |
| 60 | |
| 61 | ``` |
| 62 | [google] |
| 63 | analyticsId = UA-XXXX-Y |
| 64 | ``` |