commit 8d9a145312d2ca7e39f49907f9b716320f48a51c Author: Debian Date: Thu Sep 7 17:27:01 2023 +0000 first commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f7f7438 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..9a4c1c5 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Documentation for Hemera Network and Hemera Link + +Hemera Network is a private network based on Netmaker to allow users to connect to a subnet behind a NAT. + +Devices act either as coordination nodes, hosts, or clients. +- Coordination devices are available via a public IP and have ports open to the outside world. They handle connections between devices that are behind a NAT. +- Hosts are nodes that are behind a firewall that can act as gateways for their subnet or act as standalone machines that are accesable by other devices on the network. +- Clients are stock wireguard clients and need a Coordination node to proxy all data through them, when connected via wireguard your data enters through a coordination node and exits through a host that has signed up to be an exit node for a given network. + +Based on Hugo and the ["Stack"](https://github.com/CaiJimmy/hugo-theme-stack) theme from CaiJimmy on Github. diff --git a/wiki-hemera/archetypes/default.md b/wiki-hemera/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/wiki-hemera/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/wiki-hemera/config.toml b/wiki-hemera/config.toml new file mode 100644 index 0000000..1d7c819 --- /dev/null +++ b/wiki-hemera/config.toml @@ -0,0 +1,3 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site'