zenbook migration

This commit is contained in:
2026-02-08 10:25:39 +01:00
commit 84b8735385
178 changed files with 5350 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<html>
<head>
<title>%%TITLE%%</title>
</head>
<body>
This is it: %%TEST_ENV%%
</body>
</html>
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www;
location / {
try_files $uri /index.html =301;
}
access_log syslog:server=unix:/dev/log,facility=local1 default_short;
error_log syslog:server=unix:/dev/log,facility=local1;
}
+53
View File
@@ -0,0 +1,53 @@
zerops:
- setup: static
build:
deployFiles:
- ./
run:
os: alpine
base: static
envVariables:
TEST_ENV: "You!"
TITLE: "My Title Test"
envReplace:
target: ./
delimiter: "%%"
routing:
redirects:
- from: /*
to: /index.html
- setup: alpine
extends: static
run:
os: alpine
base: static
- setup: ubuntu
extends: static
run:
os: ubuntu
base: static
- setup: nginx
build:
deployFiles:
- ./
run:
os: alpine
base: nginx@latest
envVariables:
TEST_ENV: "You!"
TITLE: "My Title Test"
envReplace:
target: ./
delimiter: "%%"
siteConfigPath: nginx.conf
- setup: alpinenginx
extends: nginx
run:
os: alpine
base: nginx@latest
- setup: ubuntunginx
extends: nginx
run:
os: ubuntu
base: nginx@latest