Mya Pitzeruse
29de39b130
This change adds support for managing multiple sites from a single deployment of the pages application. Routes are configured using a configuration file rather than looking for CNAMEs in all the associated repositories. For an example configuration, see examples/multisite/pages.toml. Resolves #4
15 lines
306 B
JSON
15 lines
306 B
JSON
{
|
|
"sites": {
|
|
"mjpitz.com": {
|
|
"url": "https://github.com/mjpitz/mjpitz.git",
|
|
"branch": "gh-pages",
|
|
"sync_interval": 300000000000
|
|
},
|
|
"go.pitz.tech": {
|
|
"url": "https://github.com/mjpitz/myago.git",
|
|
"branch": "site",
|
|
"sync_interval": 1500000000000
|
|
}
|
|
}
|
|
}
|