├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── LICENSE ├── README.md ├── conf ├── extra_php-fpm.conf ├── nginx.conf ├── sql │ ├── multisite.sql │ └── single.sql └── wp-config.php ├── doc ├── ADMIN.md ├── ADMIN_fr.md ├── DESCRIPTION.md ├── DESCRIPTION_fr.md └── screenshots │ └── screen-themes.png ├── manifest.toml ├── scripts ├── _common.sh ├── backup ├── change_url ├── install ├── remove ├── restore └── upgrade └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/README.md -------------------------------------------------------------------------------- /conf/extra_php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/conf/extra_php-fpm.conf -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/sql/multisite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/conf/sql/multisite.sql -------------------------------------------------------------------------------- /conf/sql/single.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/conf/sql/single.sql -------------------------------------------------------------------------------- /conf/wp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/conf/wp-config.php -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/ADMIN_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/doc/ADMIN_fr.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/DESCRIPTION_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/doc/DESCRIPTION_fr.md -------------------------------------------------------------------------------- /doc/screenshots/screen-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/doc/screenshots/screen-themes.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/_common.sh -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/wordpress_ynh/HEAD/tests.toml --------------------------------------------------------------------------------