23 lines
636 B
TOML
23 lines
636 B
TOML
[storage]
|
|
data_dir = "./data"
|
|
cache_dir = "./data/cache"
|
|
build_dir = "./data/build"
|
|
|
|
[server]
|
|
listen = "0.0.0.0:3000"
|
|
# openssl rand -base64 32
|
|
cookie_secret_key = "mnmr/1bpZ1C8llHC3f35zemOzXvGE6s1Iah2a4BBhaw="
|
|
token_secret_key = "C3IA3zb40XWy0uiT0t/7GmfrgBgkVzUW8u6fC/vSlGY="
|
|
session_duration = "1day"
|
|
allowed_origins = [
|
|
"http://localhost:8080"
|
|
]
|
|
|
|
[websites]
|
|
template_urls = [
|
|
"https://github.com/Scribouilli/site-template.git"
|
|
]
|
|
template_clone_timeout = "2min"
|
|
build_command = "bundle install && bundle exec jekyll build -s /source -d /out"
|
|
websites_url = "http://{website_name}.dev.lutaines.eu:8000/"
|
|
build_timeout = "3min"
|