#
include_recipe "apache"
+include_recipe "podman"
+
+docker_external_port = 8092
+
+podman_service "irc.openstreetmap.org" do
+ description "Container service for irc.openstreetmap.org"
+ image "ghcr.io/openstreetmap/irc:latest"
+ ports docker_external_port => "8080"
+end
ssl_certificate "irc.openstreetmap.org" do
domains ["irc.openstreetmap.org", "irc.osm.org"]
notifies :reload, "service[apache2]"
end
-directory "/srv/irc.openstreetmap.org" do
- owner "root"
- group "root"
- mode 0755
-end
-
-remote_directory "/srv/irc.openstreetmap.org/html" do
- source "html"
- owner "root"
- group "root"
- mode 0o755
- files_owner "root"
- files_group "root"
- files_mode 0o644
-end
+apache_module "proxy_http"
apache_site "irc.openstreetmap.org" do
template "apache.erb"
- directory "/srv/irc.openstreetmap.org/html"
- variables :aliases => ["irc.osm.org"]
+ variables :docker_external_port => docker_external_port, :aliases => ["irc.osm.org"]
end