From: Tom Hughes Date: Thu, 9 Jul 2020 17:51:03 +0000 (+0100) Subject: Use python3 for wsgi on dev X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/a80a330a6c3aad33e3a92d74810f81c778b8075c?ds=inline Use python3 for wsgi on dev --- diff --git a/cookbooks/dev/recipes/default.rb b/cookbooks/dev/recipes/default.rb index 879e546b7..d881e8eb3 100644 --- a/cookbooks/dev/recipes/default.rb +++ b/cookbooks/dev/recipes/default.rb @@ -86,7 +86,10 @@ apache_module "proxy_fcgi" apache_module "rewrite" apache_module "suexec" apache_module "userdir" -apache_module "wsgi" + +apache_module "wsgi" do + package "libapache2-mod-wsgi-py3" +end package "apache2-suexec-pristine"