blob: 464fa615bd1aa87605a39552ad10fd34c1af5e05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
This repository stores and keeps track of the configuration
of my NetBSD server.
It is configured as a bare Git repository in /.git. It is
managed using the script /usr/local/bin/gg.
---
A patched version of umurmurd is installed. The following
patches need to be made:
- sockaddr_storage must be replaced with sockaddr_in.
- .ss_, ->ss_ must be replaced with .sin_, ->sin_.
- In some places, /etc/ must be replaced with /usr/local/etc/.
The certificate and key are generated like so:
/usr/pkg/bin/openssl req -nodes -new -x509 -keyout key.key -out cert.crt
|