Set a production run list for the openresty_proxy role

It only contains the assets for now
This commit is contained in:
Greg Karékinian 2023-07-17 18:06:58 +02:00
parent cc91aab155
commit 307ccbd561

View File

@ -14,9 +14,12 @@ override_attributes(
)
development_run_list = %w(
role[openresty]
kosmos_assets::nginx_site
)
default_run_list = %w(
role[openresty]
tor-full
kosmos_assets::nginx_site
kosmos_discourse::nginx
@ -39,8 +42,13 @@ default_run_list = %w(
remotestorage_discourse::nginx
)
production_run_list = %w(
role[openresty]
kosmos_assets::nginx_site
)
env_run_lists(
'_default' => default_run_list,
'development' => development_run_list,
'production' => default_run_list
'production' => production_run_list
)