-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
201 lines (180 loc) · 6.42 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
nav:
- Home:
- Introduction: index.md
- Implementations: implementations.md
- Server:
- Get a Server: server/get-a-server.md
- Get a Domain Name: server/get-a-domain-name.md
- Remote Access: server/remote-access.md
- Upgrade: server/upgrade.md
- Firewall: server/firewall.md
- Intrusion Detection: server/intrusion-detection.md
- Reverse Proxy: server/reverse-proxy.md
- SSL/TLS Certificate: server/ssl-tls-certificate.md
- Nostr User: server/nostr-user.md
- Relays:
- Khatru Pyramid:
- Introduction: relays/khatru-pyramid/introduction.md
- Build: relays/khatru-pyramid/build.md
- Install: relays/khatru-pyramid/install.md
- Configuration: relays/khatru-pyramid/configuration.md
- Service: relays/khatru-pyramid/service.md
- WebSocket Connection: relays/khatru-pyramid/websocket-connection.md
- Test Your Relay: relays/khatru-pyramid/test.md
- Upgrade: relays/khatru-pyramid/upgrade.md
- Nostream:
- Introduction: relays/nostream/introduction.md
- Build: relays/nostream/build.md
- Install: relays/nostream/install.md
- Configuration: relays/nostream/configuration.md
- Service: relays/nostream/service.md
- WebSocket Connection: relays/nostream/websocket-connection.md
- Test Your Relay: relays/nostream/test.md
- Upgrade: relays/nostream/upgrade.md
- nostr-rs-relay:
- Introduction: relays/nostr-rs-relay/introduction.md
- Build: relays/nostr-rs-relay/build.md
- Install: relays/nostr-rs-relay/install.md
- Configuration: relays/nostr-rs-relay/configuration.md
- Service: relays/nostr-rs-relay/service.md
- WebSocket Connection: relays/nostr-rs-relay/websocket-connection.md
- Test Your Relay: relays/nostr-rs-relay/test.md
- Upgrade: relays/nostr-rs-relay/upgrade.md
- strfry:
- Introduction: relays/strfry/introduction.md
- Build: relays/strfry/build.md
- Install: relays/strfry/install.md
- Configuration: relays/strfry/configuration.md
- Service: relays/strfry/service.md
- WebSocket Connection: relays/strfry/websocket-connection.md
- Test Your Relay: relays/strfry/test.md
- Upgrade: relays/strfry/upgrade.md
- WoT Relay:
- Introduction: relays/wot-relay/introduction.md
- Build: relays/wot-relay/build.md
- Install: relays/wot-relay/install.md
- Configuration: relays/wot-relay/configuration.md
- Service: relays/wot-relay/service.md
- WebSocket Connection: relays/wot-relay/websocket-connection.md
- Test Your Relay: relays/wot-relay/test.md
- Upgrade: relays/wot-relay/upgrade.md
- Khatru29:
- Introduction: relays/khatru29/introduction.md
- Build: relays/khatru29/build.md
- Install: relays/khatru29/install.md
- Configuration: relays/khatru29/configuration.md
- Service: relays/khatru29/service.md
- WebSocket Connection: relays/khatru29/websocket-connection.md
- Test Your Relay: relays/khatru29/test.md
- Upgrade: relays/khatru29/upgrade.md
- strfry29:
- Introduction: relays/strfry29/introduction.md
- Build: relays/strfry29/build.md
- Install: relays/strfry29/install.md
- Configuration: relays/strfry29/configuration.md
- Service: relays/strfry29/service.md
- WebSocket Connection: relays/strfry29/websocket-connection.md
- Test Your Relay: relays/strfry29/test.md
- Upgrade: relays/strfry29/upgrade.md
- FAQ:
- Introduction: faq/index.md
- Resources:
- Nostr: resources/nostr.md
- Nginx: resources/nginx.md
- Contact:
- NODE-TEC: contact/node-tec.md
- Donate:
- Bitcoin: donate/bitcoin.md
- Fiat: donate/fiat.md
site_name: Relay Runner
site_url: https://relayrunner.org/
theme:
font:
code: IBM Plex Mono
icon:
view: material/eye
name: material
logo: assets/logo_cropped_purple.png
favicon: assets/logo_square_purple.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tracking
- navigation.sections
# - navigation.footer
# - navigation.expand
- navigation.path
# - navigation.prune
# - navigation.top
# - navigation.indexes
- navigation.tabs
# - navigation.tabs.sticky
- search.suggest
- search.highlight
- search.share
# - toc.follow
# - toc.integrate
- content.code.copy
- content.action.edit
plugins:
- search
- social
- tags
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
auto_title: false
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
- pymdownx.smartsymbols
extra_css:
- stylesheets/extra.css
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/nodetec
name: NODE-TEC GitHub
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/@nodetec
name: NODE-TEC YouTube
- icon: fontawesome/solid/bookmark
link: https://nodetec.substack.com/
name: NODE-TEC Substack
- icon: fontawesome/brands/keybase
link: https://keybase.io/nodetec
name: NODE-TEC Keybase
- icon: fontawesome/brands/x-twitter
link: https://x.com/node_tec
name: NODE-TEC X
- icon: fontawesome/brands/discord
link: https://discord.gg/zdKq5brhF9
name: NODE-TEC Discord
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
name: NODE-TEC Email
repo_url: https://github.com/nodetec/relayrunner
repo_name: NODE-TEC/relayrunner
edit_uri: edit/master/docs/
copyright: Copyright © 2024 NODE-TEC