mirror of
https://github.com/YunoHost-Apps/wordpress_ynh.git
synced 2024-09-03 20:36:10 +02:00
38 lines
1.4 KiB
TOML
38 lines
1.4 KiB
TOML
[reset_default_nginx]
|
|
name = "Reset the NGINX config for this app."
|
|
command = "/bin/bash scripts/actions/reset_default_system nginx"
|
|
# user = "root" # optional
|
|
# cwd = "/" # optional
|
|
# accepted_return_codes = [0, 1, 2, 3] # optional
|
|
accepted_return_codes = [0]
|
|
description = "Reset the NGINX config for this app."
|
|
|
|
|
|
[reset_default_phpfpm]
|
|
name = "Reset the PHP-FPM config for this app."
|
|
command = "/bin/bash scripts/actions/reset_default_system phpfpm"
|
|
# user = "root" # optional
|
|
# cwd = "/" # optional
|
|
# accepted_return_codes = [0, 1, 2, 3] # optional
|
|
accepted_return_codes = [0]
|
|
description = "Reset the PHP-FPM config for this app."
|
|
|
|
|
|
[reset_default_app]
|
|
name = "Reset the app with a default configuration."
|
|
command = "/bin/bash scripts/actions/reset_default_app"
|
|
# user = "root" # optional
|
|
# cwd = "/" # optional
|
|
# accepted_return_codes = [0, 1, 2, 3] # optional
|
|
accepted_return_codes = [0]
|
|
description = "Reset the app to its default configuration to try to fix potential issues.<br>This action won't remove any data added to the app.<br>However, if you have modified any configuration, it will be overwritten."
|
|
|
|
|
|
[disable_maintenance]
|
|
name = "Disable the maintenance mode of WordPress"
|
|
command = "/bin/bash scripts/actions/disable_maintenance"
|
|
# user = "root" # optional
|
|
# cwd = "/" # optional
|
|
# accepted_return_codes = [0, 1, 2, 3] # optional
|
|
accepted_return_codes = [0]
|
|
description = "Disable the maintenance mode of WordPress if you're stuck after an upgrade"
|