diff --git a/README.md b/README.md index 827827f..9605769 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@
-
@@ -47,7 +46,7 @@ - **Up-to-date** : PHP 7.2 & 7.3, MariaDB 10.3 & Redis 5.0 - **Secured** : Hardened WordPress security with strict Nginx location directives - **Powerful** : Optimized Nginx configurations with multiple cache backends support -- **SSL** : Domain, Subdomain & Wildcard Let's Encrypt SSL certificates with DNS API handled by acme.sh +- **SSL** : Domain, Subdomain & Wildcard Let's Encrypt SSL certificates with DNS API support - **Modern** : Strong ciphers_suite, modern TLS protocols and HSTS support (Grade A+ on [ssllabs](https://www.ssllabs.com/ssltest/analyze.html?d=demo.wordops.eu&latest)) - **Monitoring** : Live Nginx vhost traffic with ngx_vts_module and server monitoring with Netdata - **User Friendly** : WordOps dashboard with server status/monitoring and tools ([demo](https://demo.wordops.eu)) diff --git a/wo/cli/plugins/stack.py b/wo/cli/plugins/stack.py index f91b2d6..ae27f19 100644 --- a/wo/cli/plugins/stack.py +++ b/wo/cli/plugins/stack.py @@ -609,8 +609,10 @@ class WOStackController(CementBaseController): ["HTTP Auth Password : {0}" .format(passwd)]) self.msg = (self.msg + ["WordOps backend is available " - "on https://{0}:22222" - .format(server_ip.text)]) + "on https://{0}:22222 " + "or https://{1}:22222" + .format(server_ip.text, + WOVariables.wo_fqdn)]) else: WOService.restart_service(self, 'nginx')