├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── main.yml │ ├── pypi.yml │ └── stale.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── config ├── bash_completion.d │ └── wo_auto.rc ├── plugins.d │ ├── clean.conf │ ├── debug.conf │ ├── import_slow_log.conf │ ├── info.conf │ ├── log.conf │ ├── maintenance.conf │ ├── secure.conf │ ├── site.conf │ ├── stack.conf │ └── update.conf └── wo.conf ├── docs └── wo.8 ├── favicon.ico ├── install ├── logo.png ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── cli │ ├── 13_test_stack_install.py │ ├── 14_test_stack_services_stop.py │ ├── 15_test_stack_services_start.py │ ├── 16_test_stack_services_restart.py │ ├── 17_test_stack_services_status.py │ ├── 18_test_site_create.py │ ├── 19_test_site_disable.py │ ├── 20_test_site_enable.py │ ├── 21_test_site_info.py │ ├── 22_test_site_list.py │ ├── 23_test_site_show.py │ ├── 24_test_site_update.py │ ├── 25_test_clean.py │ ├── 27_test_info.py │ ├── 28_test_secure.py │ ├── 29_test_site_delete.py │ ├── 30_test_stack_remove.py │ ├── 31_test_stack_purge.py │ ├── __init__.py │ ├── ext │ │ └── __init__.py │ └── plugins │ │ └── __init__.py ├── core │ └── __init__.py ├── issue.sh └── travis.sh └── wo ├── __init__.py ├── cli ├── __init__.py ├── bootstrap.py ├── controllers │ ├── __init__.py │ └── base.py ├── ext │ └── __init__.py ├── main.py ├── plugins │ ├── __init__.py │ ├── clean.py │ ├── debug.py │ ├── import_slow_log.py │ ├── info.py │ ├── log.py │ ├── maintenance.py │ ├── models.py │ ├── secure.py │ ├── site.py │ ├── site_backup.py │ ├── site_clone.py │ ├── site_create.py │ ├── site_functions.py │ ├── site_update.py │ ├── sitedb.py │ ├── stack.py │ ├── stack_migrate.py │ ├── stack_pref.py │ ├── stack_services.py │ ├── stack_upgrade.py │ ├── sync.py │ └── update.py └── templates │ ├── 22222.mustache │ ├── __init__.py │ ├── acl.mustache │ ├── anemometer.mustache │ ├── avif.mustache │ ├── blockips.mustache │ ├── brotli.mustache │ ├── cf-update.mustache │ ├── cloudflare.mustache │ ├── fail2ban-forbidden.mustache │ ├── fail2ban-wp.mustache │ ├── fail2ban.mustache │ ├── fastcgi.mustache │ ├── force-ssl.mustache │ ├── freshclam.mustache │ ├── gzip.mustache │ ├── info_mysql.mustache │ ├── info_nginx.mustache │ ├── info_php.mustache │ ├── locations.mustache │ ├── map-wp.mustache │ ├── mime.mustache │ ├── my.mustache │ ├── nextcloud.mustache │ ├── nginx-core.mustache │ ├── php-fpm.mustache │ ├── php-pool.mustache │ ├── php.mustache │ ├── proftpd-tls.mustache │ ├── proftpd.mustache │ ├── publicsuffix.mustache │ ├── redis.mustache │ ├── siteinfo.mustache │ ├── sshd.mustache │ ├── ssl.mustache │ ├── stub_status.mustache │ ├── sysctl.mustache │ ├── traffic-advice.mustache │ ├── tweaks.mustache │ ├── ufw.mustache │ ├── upstream.mustache │ ├── virtualconf.mustache │ ├── webp.mustache │ ├── wo-kernel-script.mustache │ ├── wo-kernel-service.mustache │ ├── wo-plus.mustache │ ├── wo-ufw.mustache │ ├── wo-update.mustache │ ├── wpce.mustache │ ├── wpcommon.mustache │ ├── wpfc.mustache │ ├── wprocket.mustache │ ├── wpsc.mustache │ └── wpsubdir.mustache ├── core ├── __init__.py ├── acme.py ├── addswap.py ├── apt_repo.py ├── aptget.py ├── checkfqdn.py ├── cron.py ├── database.py ├── domainvalidate.py ├── download.py ├── exc.py ├── extract.py ├── fileutils.py ├── git.py ├── logging.py ├── logwatch.py ├── mysql.py ├── nginx.py ├── nginxhashbucket.py ├── random.py ├── sendmail.py ├── services.py ├── shellexec.py ├── sslutils.py ├── stackconf.py ├── template.py ├── variables.py └── wpcli.py └── utils ├── __init__.py └── test.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/README.md -------------------------------------------------------------------------------- /config/bash_completion.d/wo_auto.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/bash_completion.d/wo_auto.rc -------------------------------------------------------------------------------- /config/plugins.d/clean.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/clean.conf -------------------------------------------------------------------------------- /config/plugins.d/debug.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/debug.conf -------------------------------------------------------------------------------- /config/plugins.d/import_slow_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/import_slow_log.conf -------------------------------------------------------------------------------- /config/plugins.d/info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/info.conf -------------------------------------------------------------------------------- /config/plugins.d/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/log.conf -------------------------------------------------------------------------------- /config/plugins.d/maintenance.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/maintenance.conf -------------------------------------------------------------------------------- /config/plugins.d/secure.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/secure.conf -------------------------------------------------------------------------------- /config/plugins.d/site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/site.conf -------------------------------------------------------------------------------- /config/plugins.d/stack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/stack.conf -------------------------------------------------------------------------------- /config/plugins.d/update.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/plugins.d/update.conf -------------------------------------------------------------------------------- /config/wo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/config/wo.conf -------------------------------------------------------------------------------- /docs/wo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/docs/wo.8 -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/favicon.ico -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/install -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/13_test_stack_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/13_test_stack_install.py -------------------------------------------------------------------------------- /tests/cli/14_test_stack_services_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/14_test_stack_services_stop.py -------------------------------------------------------------------------------- /tests/cli/15_test_stack_services_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/15_test_stack_services_start.py -------------------------------------------------------------------------------- /tests/cli/16_test_stack_services_restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/16_test_stack_services_restart.py -------------------------------------------------------------------------------- /tests/cli/17_test_stack_services_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/17_test_stack_services_status.py -------------------------------------------------------------------------------- /tests/cli/18_test_site_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/18_test_site_create.py -------------------------------------------------------------------------------- /tests/cli/19_test_site_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/19_test_site_disable.py -------------------------------------------------------------------------------- /tests/cli/20_test_site_enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/20_test_site_enable.py -------------------------------------------------------------------------------- /tests/cli/21_test_site_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/21_test_site_info.py -------------------------------------------------------------------------------- /tests/cli/22_test_site_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/22_test_site_list.py -------------------------------------------------------------------------------- /tests/cli/23_test_site_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/23_test_site_show.py -------------------------------------------------------------------------------- /tests/cli/24_test_site_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/24_test_site_update.py -------------------------------------------------------------------------------- /tests/cli/25_test_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/25_test_clean.py -------------------------------------------------------------------------------- /tests/cli/27_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/27_test_info.py -------------------------------------------------------------------------------- /tests/cli/28_test_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/28_test_secure.py -------------------------------------------------------------------------------- /tests/cli/29_test_site_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/29_test_site_delete.py -------------------------------------------------------------------------------- /tests/cli/30_test_stack_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/30_test_stack_remove.py -------------------------------------------------------------------------------- /tests/cli/31_test_stack_purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/cli/31_test_stack_purge.py -------------------------------------------------------------------------------- /tests/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/issue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/issue.sh -------------------------------------------------------------------------------- /tests/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/tests/travis.sh -------------------------------------------------------------------------------- /wo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/__init__.py -------------------------------------------------------------------------------- /wo/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/cli/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/bootstrap.py -------------------------------------------------------------------------------- /wo/cli/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/cli/controllers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/controllers/base.py -------------------------------------------------------------------------------- /wo/cli/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/main.py -------------------------------------------------------------------------------- /wo/cli/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/cli/plugins/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/clean.py -------------------------------------------------------------------------------- /wo/cli/plugins/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/debug.py -------------------------------------------------------------------------------- /wo/cli/plugins/import_slow_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/import_slow_log.py -------------------------------------------------------------------------------- /wo/cli/plugins/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/info.py -------------------------------------------------------------------------------- /wo/cli/plugins/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/log.py -------------------------------------------------------------------------------- /wo/cli/plugins/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/maintenance.py -------------------------------------------------------------------------------- /wo/cli/plugins/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/models.py -------------------------------------------------------------------------------- /wo/cli/plugins/secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/secure.py -------------------------------------------------------------------------------- /wo/cli/plugins/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site.py -------------------------------------------------------------------------------- /wo/cli/plugins/site_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site_backup.py -------------------------------------------------------------------------------- /wo/cli/plugins/site_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site_clone.py -------------------------------------------------------------------------------- /wo/cli/plugins/site_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site_create.py -------------------------------------------------------------------------------- /wo/cli/plugins/site_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site_functions.py -------------------------------------------------------------------------------- /wo/cli/plugins/site_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/site_update.py -------------------------------------------------------------------------------- /wo/cli/plugins/sitedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/sitedb.py -------------------------------------------------------------------------------- /wo/cli/plugins/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/stack.py -------------------------------------------------------------------------------- /wo/cli/plugins/stack_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/stack_migrate.py -------------------------------------------------------------------------------- /wo/cli/plugins/stack_pref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/stack_pref.py -------------------------------------------------------------------------------- /wo/cli/plugins/stack_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/stack_services.py -------------------------------------------------------------------------------- /wo/cli/plugins/stack_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/stack_upgrade.py -------------------------------------------------------------------------------- /wo/cli/plugins/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/sync.py -------------------------------------------------------------------------------- /wo/cli/plugins/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/plugins/update.py -------------------------------------------------------------------------------- /wo/cli/templates/22222.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/22222.mustache -------------------------------------------------------------------------------- /wo/cli/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/cli/templates/acl.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/acl.mustache -------------------------------------------------------------------------------- /wo/cli/templates/anemometer.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/anemometer.mustache -------------------------------------------------------------------------------- /wo/cli/templates/avif.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/avif.mustache -------------------------------------------------------------------------------- /wo/cli/templates/blockips.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/blockips.mustache -------------------------------------------------------------------------------- /wo/cli/templates/brotli.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/brotli.mustache -------------------------------------------------------------------------------- /wo/cli/templates/cf-update.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/cf-update.mustache -------------------------------------------------------------------------------- /wo/cli/templates/cloudflare.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/cloudflare.mustache -------------------------------------------------------------------------------- /wo/cli/templates/fail2ban-forbidden.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/fail2ban-forbidden.mustache -------------------------------------------------------------------------------- /wo/cli/templates/fail2ban-wp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/fail2ban-wp.mustache -------------------------------------------------------------------------------- /wo/cli/templates/fail2ban.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/fail2ban.mustache -------------------------------------------------------------------------------- /wo/cli/templates/fastcgi.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/fastcgi.mustache -------------------------------------------------------------------------------- /wo/cli/templates/force-ssl.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/force-ssl.mustache -------------------------------------------------------------------------------- /wo/cli/templates/freshclam.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/freshclam.mustache -------------------------------------------------------------------------------- /wo/cli/templates/gzip.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/gzip.mustache -------------------------------------------------------------------------------- /wo/cli/templates/info_mysql.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/info_mysql.mustache -------------------------------------------------------------------------------- /wo/cli/templates/info_nginx.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/info_nginx.mustache -------------------------------------------------------------------------------- /wo/cli/templates/info_php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/info_php.mustache -------------------------------------------------------------------------------- /wo/cli/templates/locations.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/locations.mustache -------------------------------------------------------------------------------- /wo/cli/templates/map-wp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/map-wp.mustache -------------------------------------------------------------------------------- /wo/cli/templates/mime.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/mime.mustache -------------------------------------------------------------------------------- /wo/cli/templates/my.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/my.mustache -------------------------------------------------------------------------------- /wo/cli/templates/nextcloud.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/nextcloud.mustache -------------------------------------------------------------------------------- /wo/cli/templates/nginx-core.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/nginx-core.mustache -------------------------------------------------------------------------------- /wo/cli/templates/php-fpm.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/php-fpm.mustache -------------------------------------------------------------------------------- /wo/cli/templates/php-pool.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/php-pool.mustache -------------------------------------------------------------------------------- /wo/cli/templates/php.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/php.mustache -------------------------------------------------------------------------------- /wo/cli/templates/proftpd-tls.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/proftpd-tls.mustache -------------------------------------------------------------------------------- /wo/cli/templates/proftpd.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/proftpd.mustache -------------------------------------------------------------------------------- /wo/cli/templates/publicsuffix.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/publicsuffix.mustache -------------------------------------------------------------------------------- /wo/cli/templates/redis.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/redis.mustache -------------------------------------------------------------------------------- /wo/cli/templates/siteinfo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/siteinfo.mustache -------------------------------------------------------------------------------- /wo/cli/templates/sshd.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/sshd.mustache -------------------------------------------------------------------------------- /wo/cli/templates/ssl.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/ssl.mustache -------------------------------------------------------------------------------- /wo/cli/templates/stub_status.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/stub_status.mustache -------------------------------------------------------------------------------- /wo/cli/templates/sysctl.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/sysctl.mustache -------------------------------------------------------------------------------- /wo/cli/templates/traffic-advice.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/traffic-advice.mustache -------------------------------------------------------------------------------- /wo/cli/templates/tweaks.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/tweaks.mustache -------------------------------------------------------------------------------- /wo/cli/templates/ufw.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/ufw.mustache -------------------------------------------------------------------------------- /wo/cli/templates/upstream.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/upstream.mustache -------------------------------------------------------------------------------- /wo/cli/templates/virtualconf.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/virtualconf.mustache -------------------------------------------------------------------------------- /wo/cli/templates/webp.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/webp.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wo-kernel-script.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wo-kernel-script.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wo-kernel-service.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wo-kernel-service.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wo-plus.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wo-plus.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wo-ufw.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wo-ufw.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wo-update.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wo-update.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wpce.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wpce.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wpcommon.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wpcommon.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wpfc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wpfc.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wprocket.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wprocket.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wpsc.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wpsc.mustache -------------------------------------------------------------------------------- /wo/cli/templates/wpsubdir.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/cli/templates/wpsubdir.mustache -------------------------------------------------------------------------------- /wo/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/core/acme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/acme.py -------------------------------------------------------------------------------- /wo/core/addswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/addswap.py -------------------------------------------------------------------------------- /wo/core/apt_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/apt_repo.py -------------------------------------------------------------------------------- /wo/core/aptget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/aptget.py -------------------------------------------------------------------------------- /wo/core/checkfqdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/checkfqdn.py -------------------------------------------------------------------------------- /wo/core/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/cron.py -------------------------------------------------------------------------------- /wo/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/database.py -------------------------------------------------------------------------------- /wo/core/domainvalidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/domainvalidate.py -------------------------------------------------------------------------------- /wo/core/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/download.py -------------------------------------------------------------------------------- /wo/core/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/exc.py -------------------------------------------------------------------------------- /wo/core/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/extract.py -------------------------------------------------------------------------------- /wo/core/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/fileutils.py -------------------------------------------------------------------------------- /wo/core/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/git.py -------------------------------------------------------------------------------- /wo/core/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/logging.py -------------------------------------------------------------------------------- /wo/core/logwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/logwatch.py -------------------------------------------------------------------------------- /wo/core/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/mysql.py -------------------------------------------------------------------------------- /wo/core/nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/nginx.py -------------------------------------------------------------------------------- /wo/core/nginxhashbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/nginxhashbucket.py -------------------------------------------------------------------------------- /wo/core/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/random.py -------------------------------------------------------------------------------- /wo/core/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/sendmail.py -------------------------------------------------------------------------------- /wo/core/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/services.py -------------------------------------------------------------------------------- /wo/core/shellexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/shellexec.py -------------------------------------------------------------------------------- /wo/core/sslutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/sslutils.py -------------------------------------------------------------------------------- /wo/core/stackconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/stackconf.py -------------------------------------------------------------------------------- /wo/core/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/template.py -------------------------------------------------------------------------------- /wo/core/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/variables.py -------------------------------------------------------------------------------- /wo/core/wpcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/core/wpcli.py -------------------------------------------------------------------------------- /wo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wo/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireman03151/best_WordPress/HEAD/wo/utils/test.py --------------------------------------------------------------------------------