Compare commits
4 Commits
man
...
c81ef26f4e
Author | SHA1 | Date | |
---|---|---|---|
c81ef26f4e | |||
dbd7f3dfd4 | |||
547ef14a31 | |||
49c1417b8a
|
10
Makefile
10
Makefile
@@ -29,6 +29,12 @@ krovmans = $(krov_docs:krov/%/README.md=$(mandir)/%.6)
|
|||||||
$(mandir)/%.6: krov/%/README.md
|
$(mandir)/%.6: krov/%/README.md
|
||||||
lowdown -stman $< > $@
|
lowdown -stman $< > $@
|
||||||
|
|
||||||
|
splint_docs != grep -rl "^section:" splintrs
|
||||||
|
splintmans = $(splint_docs:splintrs/%/README.md=$(mandir)/%.6)
|
||||||
|
|
||||||
|
$(mandir)/%.6: splintrs/%/README.md
|
||||||
|
lowdown -stman $< > $@
|
||||||
|
|
||||||
setup_docs != grep -rl "^section:" setup
|
setup_docs != grep -rl "^section:" setup
|
||||||
setupmans = $(setup_docs:setup/%.md=$(mandir)/%.6)
|
setupmans = $(setup_docs:setup/%.md=$(mandir)/%.6)
|
||||||
|
|
||||||
@@ -38,10 +44,10 @@ $(mandir)/%.6: setup/%.md
|
|||||||
$(mandir):
|
$(mandir):
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
|
||||||
$(kralmans) $(krovmans) $(setupmans) :| $(mandir)
|
$(kralmans) $(krovmans) $(splintmans) $(setupmans) :| $(mandir)
|
||||||
|
|
||||||
.PHONY: pages
|
.PHONY: pages
|
||||||
pages: $(kralmans) $(krovmans) $(setupmans)
|
pages: $(kralmans) $(krovmans) $(setupmans) $(splintmans)
|
||||||
$(info $(kralmans))
|
$(info $(kralmans))
|
||||||
@test ! $(command -v mandb) || mandb --user-db
|
@test ! $(command -v mandb) || mandb --user-db
|
||||||
$(info Open DMZ's man pages with 'man 6 <tab>')
|
$(info Open DMZ's man pages with 'man 6 <tab>')
|
||||||
|
58
kralizec/wireguard11/README.md
Normal file
58
kralizec/wireguard11/README.md
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
VMID: 103
|
||||||
|
---
|
||||||
|
|
||||||
|
[Wireguard VPN quickstart](https://www.wireguard.com/quickstart)
|
||||||
|
|
||||||
|
Check dmzadmin for `wireguard.gpg` to know who to contact for access
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Server config
|
||||||
|
|
||||||
|
New user/client needs to provide their wireguard `publickey` and new ip on the network needs to be assigned (`x`)
|
||||||
|
add next lines to the bottom of the conf file - `/etc/wireguard/wg0.conf`
|
||||||
|
|
||||||
|
```conf
|
||||||
|
[Peer]
|
||||||
|
PublicKey = <client_public_key>
|
||||||
|
AllowedIPs = 192.168.164.x/32
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Client config
|
||||||
|
|
||||||
|
client conf example
|
||||||
|
`x` is the assinged on the server as peer
|
||||||
|
|
||||||
|
```conf
|
||||||
|
|
||||||
|
[Interface]
|
||||||
|
Address = 192.168.164.x/32
|
||||||
|
DNS = 1.1.1.1
|
||||||
|
MTU = 1420
|
||||||
|
SaveConfig = true
|
||||||
|
ListenPort = 51820
|
||||||
|
FwMark = 0xca6c
|
||||||
|
PrivateKey = <your_private_wg_key>
|
||||||
|
|
||||||
|
[Peer]
|
||||||
|
PublicKey = JP2FTHLUujkevz1kUymciLImsx1OX9ViUko7oPAIoiA=
|
||||||
|
AllowedIPs = 192.168.164.0/24, 192.168.1.0/24
|
||||||
|
Endpoint = 77.105.27.232:51820
|
||||||
|
PersistentKeepalive = 21
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Command to resolve ip clashing with current and wireguard network
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ip route add <ip> dev <wg0>
|
||||||
|
```
|
||||||
|
|
||||||
|
- `ip` you want to resove -> for wireguard vm 192.168.1.10
|
||||||
|
- `wg0` name of the wireguard conf
|
||||||
|
|
5
scripts/generatepass.sh
Executable file
5
scripts/generatepass.sh
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo $(shuf shared/english.txt | head) | sed "s/ //g"
|
||||||
|
|
@@ -1,3 +1,9 @@
|
|||||||
|
---
|
||||||
|
source: Decentrala
|
||||||
|
section: 6
|
||||||
|
title: Soft-Serve Basics
|
||||||
|
---
|
||||||
|
|
||||||
Soft Serve has its configurations stored inside itself in a repo. Admins can pull:
|
Soft Serve has its configurations stored inside itself in a repo. Admins can pull:
|
||||||
|
|
||||||
`git clone ssh://soft.dmz.rs:2222/.soft-serve`
|
`git clone ssh://soft.dmz.rs:2222/.soft-serve`
|
||||||
|
@@ -1,3 +1,9 @@
|
|||||||
|
---
|
||||||
|
source: Decentrala
|
||||||
|
section: 6
|
||||||
|
title: Soft-Serve Webhooks
|
||||||
|
---
|
||||||
|
|
||||||
### Soft serve webhooks
|
### Soft serve webhooks
|
||||||
|
|
||||||
Soft serve supports [webhooks](https://en.wikipedia.org/wiki/Webhook)
|
Soft serve supports [webhooks](https://en.wikipedia.org/wiki/Webhook)
|
||||||
|
Reference in New Issue
Block a user