From 689dbf870d39a9346a780b3e69e49530f5430dd5 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Tue, 5 Apr 2022 12:29:25 -0500 Subject: [PATCH] Updated Knowledge Base (markdown) --- Knowledge-Base.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Knowledge-Base.md b/Knowledge-Base.md index bd14523..04f796a 100644 --- a/Knowledge-Base.md +++ b/Knowledge-Base.md @@ -1,5 +1,7 @@ ### This page encapsulates a set of questions and answers in no particular order that users of IW4MAdmin may find useful. +*** + ### What is "http://0.0.0.0:1624" and should I modify it? `0.0.0.0` is a string symbol used to represent a set of IP Addresses. This is **not** a real IP Address. I.E. you cannot go to http://0.0.0.0 and expect something to show up. @@ -7,5 +9,14 @@ This is **not** a real IP Address. I.E. you cannot go to http://0.0.0.0 and expe In computing, a network socket is an "endpoint" (typically represented by an `IP Address` and `Port` combination). `http://0.0.0.0:1624` represents all [bindable sockets](https://www.cs.dartmouth.edu/~campbell/cs50/socketprogramming.html) (using the specified port) on a given machine. A single machine may have multiple NIC (network interface cards) that have multiple assigned IP Addresses. -As such `http://0.0.0.0:1624` will attempt to bind to each NIC and each IP Address on port `1624` by default. -**Unless you are experienced with networking or running IW4MAdmin behind a reverse proxy, it is recommended to leave this value as is.** \ No newline at end of file +As such `http://0.0.0.0:1624` will attempt to bind to each NIC and each IP Address on port `1624` by default. +**Unless you are experienced with networking or running IW4MAdmin behind a reverse proxy, it is recommended to leave this value as is.** + +*** + +### What format should I use for `WebfrontPrimaryColor` and `WebfrontSecondaryColor` +These options support [hex color codes](https://htmlcolorcodes.com/) and [web color names](https://www.w3schools.com/colors/colors_names.asp) + +**Examples** +- `"#ff00ff"` +- `"DeepSkyBlue"` \ No newline at end of file