diff options
author | Liam Crilly <liam.crilly@nginx.com> | 2023-10-04 17:52:06 +0100 |
---|---|---|
committer | Liam Crilly <liam.crilly@nginx.com> | 2023-10-04 17:52:06 +0100 |
commit | 1617f2c04514309a8d19d73103c468af564ef3fd (patch) | |
tree | eaa69ddf25b18651e2c6802a0d407fe0853797dc | |
parent | 37b0f34fb5d6d6525a9d2ae097837324c2697d50 (diff) | |
download | unit-1617f2c04514309a8d19d73103c468af564ef3fd.tar.gz unit-1617f2c04514309a8d19d73103c468af564ef3fd.tar.bz2 |
Docker: fix HTML escaping.
-rw-r--r-- | pkg/docker/welcome.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/docker/welcome.html b/pkg/docker/welcome.html index 9c4f8281..89de39e1 100644 --- a/pkg/docker/welcome.html +++ b/pkg/docker/welcome.html @@ -35,7 +35,7 @@ on the <a href="https://en.wikipedia.org/wiki/Unix_domain_socket">Unix socket</a> at <b>/var/run/control.unit.sock</b> inside the container.<br> To see the current configuration run:</p> - <pre>docker exec -ti <containerID> curl --unix-socket /var/run/control.unit.sock http://localhost/config</pre> + <pre>docker exec -ti <containerID> curl --unix-socket /var/run/control.unit.sock http://localhost/config</pre> </div> <hr> |