Add hostname alternative

This commit is contained in:
VirtuBox
2019-08-04 18:43:38 +02:00
parent ed85482a24
commit 62eca49326
2 changed files with 5 additions and 4 deletions

View File

@@ -7,7 +7,6 @@
<p align="center">
<img src="https://docs.wordops.net/images/wordops-intro.gif" width="600" alt="WordOps" />
</p>
<p align="center">
@@ -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))

View File

@@ -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')