Compare commits

..

2 Commits

Author SHA1 Message Date
Erik Winter f0b8a6276a fly.io deploy 2025-01-06 19:35:15 +01:00
Erik Winter 18b50c220b makefile 2025-01-06 19:16:27 +01:00
5 changed files with 31 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nginx:alpine
COPY public/vrijkorteverhalen.nl /usr/share/nginx/html

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
build-vkv:
cd vrijkorteverhalen.nl && zola build

22
fly.toml Normal file
View File

@ -0,0 +1,22 @@
# fly.toml app configuration file generated for websites on 2025-01-06T19:26:19+01:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'websites'
primary_region = 'ams'
[build]
[http_service]
internal_port = 80
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1

View File

@ -1,5 +1,5 @@
# The base URL of the site; the only required configuration variable.
base_url = "https://zola-pickles.pages.dev"
base_url = "https://vrijkorteverhalen.nl"
# The site title and description; used in feeds by default.
title = "VrijKorteVerhalen.nl"
@ -14,6 +14,8 @@ theme = "zola-pickles"
# When set to "true", a feed is automatically generated.
generate_feeds = true
output_dir = '../public/vrijkorteverhalen.nl/'
# The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.