fix(forgejo): convert port to string

This commit is contained in:
Michael Thomas 2024-05-08 14:56:14 -04:00
parent 3fd4e28a2e
commit 5c6270a5d7

View File

@ -65,7 +65,7 @@ in {
})
(mkIf cfg.proxy {
services.caddy.virtualHosts."${url}".extraConfig = ''
reverse_proxy http://${proxyIP}:${cfg.port}
reverse_proxy http://${proxyIP}:${toString cfg.port}
'';
})
];