image: chmod u+w before overriding angie.conf
ci/woodpecker/push/woodpecker Pipeline was successful

cp from ${angie}/conf preserves read-only permissions from the nix
store, so cp -f failed when overlaying the custom main config.
This commit is contained in:
Oleks
2026-05-09 23:33:31 +03:00
parent 4826f42550
commit 067e55eb24
+2 -1
View File
@@ -61,7 +61,8 @@
# scgi_params, uwsgi_params, koi-utf, koi-win, etc.) chart configs
# `include fastcgi_params;` and similar resolve relative to /etc/angie.
cp ${angie}/conf/* etc/angie/
cp ${mainConf} etc/angie/angie.conf
chmod -R u+w etc/angie
cp -f ${mainConf} etc/angie/angie.conf
'';
config = {
Entrypoint = [ "${angie}/bin/angie" ];