diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-09-10 19:47:59 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-09-10 19:47:59 +0200 |
commit | 32002694b09ae147e241c7df49a502b82974af9b (patch) | |
tree | 64f371740b53034a38c55e77d7aa81f1011df05d /src | |
parent | Added MCServer_ prfix to env vars for versions (diff) | |
download | cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar.gz cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar.bz2 cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar.lz cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar.xz cuberite-32002694b09ae147e241c7df49a502b82974af9b.tar.zst cuberite-32002694b09ae147e241c7df49a502b82974af9b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/HTTPServer/HTTPServer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/HTTPServer/HTTPServer.cpp b/src/HTTPServer/HTTPServer.cpp index c91be677e..0c41b54b2 100644 --- a/src/HTTPServer/HTTPServer.cpp +++ b/src/HTTPServer/HTTPServer.cpp @@ -170,8 +170,8 @@ bool cHTTPServer::Initialize(const AString & a_PortsIPv4, const AString & a_Port // Notify the admin about the HTTPS / HTTP status if (m_Cert.get() == NULL) { - LOGWARNING("WebServer: The server is running in unsecure HTTP mode."); - LOGINFO("Put a valid HTTPS certificate to file 'webadmin/httpscert.crt' and its corresponding private key to 'httpskey.pem' (without any password) to enable HTTPS support"); + LOGWARNING("WebServer: The server is running in unsecured HTTP mode."); + LOGINFO("Put a valid HTTPS certificate in file 'webadmin/httpscert.crt' and its corresponding private key to 'webadmin/httpskey.pem' (without any password) to enable HTTPS support"); } else { |