-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #255 from stavros-k/rework
Rework
- Loading branch information
Showing
520 changed files
with
1,239 additions
and
11,061 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,3 @@ | |
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.obsidian |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Initial | ||
authors: stavros-k | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
stavros-k: | ||
name: Stavros Kois | ||
title: Owner of Stavros' Docs | ||
url: https://github.com/stavros-k | ||
image_url: https://github.com/stavros-k.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { PluginConfig } from "@docusaurus/types"; | ||
|
||
export const localSearch: PluginConfig = [ | ||
// https://github.com/easyops-cn/docusaurus-search-local?tab=readme-ov-file#theme-options | ||
require.resolve("@easyops-cn/docusaurus-search-local"), | ||
{ | ||
docsRouteBasePath: "/", | ||
docsDir: "docs", | ||
blogRouteBasePath: "/blog", | ||
blogDir: "blog", | ||
indexBlog: true, | ||
indexDocs: true, | ||
hashed: true, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import type { Options } from "@docusaurus/preset-classic"; | ||
|
||
import type {PluginOptions } from "@docusaurus/plugin-sitemap"; | ||
|
||
export const classicPresetOptions: Options = { | ||
pages: false, | ||
docs: { | ||
routeBasePath: "/", | ||
sidebarPath: "./sidebars.ts", | ||
showLastUpdateTime: true, | ||
editUrl: "https://github.com/stavros-k/docs/tree/master/", | ||
}, | ||
blog: { | ||
showReadingTime: true, | ||
routeBasePath: "/blog", | ||
editUrl: "https://github.com/stavros-k/docs/tree/master/" | ||
}, | ||
theme: { | ||
customCss: "./src/css/custom.css", | ||
}, | ||
sitemap: <PluginOptions> { | ||
priority: 1, | ||
filename: "sitemap.xml", | ||
changefreq: 'weekly', | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
import type { ThemeConfig } from "@docusaurus/preset-classic"; | ||
import { themes } from "prism-react-renderer"; | ||
import { zoomConfig } from "./zoomPlugin"; | ||
|
||
export const themesConfig: ThemeConfig = { | ||
copyright: `Copyright © ${new Date().getFullYear()} Stavros' Docs, Built with Docusaurus.`, | ||
docs: { | ||
sidebar: { | ||
autoCollapseCategories: true, | ||
hideable: true, | ||
}, | ||
}, | ||
...zoomConfig, | ||
prism: { | ||
theme: themes.github, | ||
darkTheme: themes.dracula, | ||
}, | ||
navbar: { | ||
title: "Stavros' Docs", | ||
logo: { | ||
alt: "Dinosaur Logo", | ||
src: "./img/logo.svg", | ||
}, | ||
items: [ | ||
{ | ||
type: "doc", | ||
docId: "index", | ||
position: "left", | ||
label: "Documentation", | ||
to: "/", | ||
}, | ||
{ | ||
docId: "blog", | ||
label: "Blog", | ||
position: "left", | ||
to: "/blog", | ||
}, | ||
{ | ||
href: "https://github.com/stavros-k/docs", | ||
label: "GitHub", | ||
position: "right", | ||
}, | ||
], | ||
}, | ||
footer: { | ||
style: "dark", | ||
links: [ | ||
{ | ||
title: "Docs", | ||
items: [ | ||
{ | ||
label: "Documentation", | ||
to: "/", | ||
}, | ||
], | ||
}, | ||
{ | ||
title: "Social", | ||
items: [ | ||
{ | ||
label: "GitHub", | ||
href: "https://github.com/stavros-k/docs", | ||
}, | ||
{ | ||
label: "Twitter", | ||
href: "https://twitter.com/stavroskois", | ||
}, | ||
], | ||
}, | ||
{ | ||
title: "More", | ||
items: [ | ||
{ | ||
label: "Blog", | ||
to: "/blog", | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { PluginConfig } from "@docusaurus/types"; | ||
|
||
export const imageZoom: PluginConfig = [ | ||
require.resolve("docusaurus-plugin-image-zoom"), | ||
{}, | ||
]; | ||
|
||
// https://github.com/francoischalifour/medium-zoom?tab=readme-ov-file#options | ||
export const zoomConfig = { | ||
zoom: { | ||
selector: ".markdown :not(em) > img", | ||
config: { | ||
margin: 100, | ||
scrollOffset: 40, | ||
background: { | ||
light: "rgb(255, 255, 255)", | ||
dark: "rgb(50, 50, 50)", | ||
}, | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ words: | |
- bindkey | ||
- browserslist | ||
- Bubuntu | ||
- changefreq | ||
- clsx | ||
- CNAME | ||
- configd | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: ESP Home | ||
sidebar_position: 1 | ||
--- |
5 changes: 4 additions & 1 deletion
5
...-home/1-xiaomi-thermometere-LYWSD03MMC.md → ...sp-home/xiaomi-thermometere-LYWSD03MMC.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Home Automation | ||
--- | ||
title: Home Automation | ||
sidebar_position: 5 | ||
--- | ||
|
||
This section will include guides around home automation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Home | ||
sidebar_position: 1 | ||
--- | ||
|
||
This is a personal documentation site, generated with Docusaurus. | ||
|
||
If you find anything wrong or missing, you can always open a PR. | ||
|
||
You can find the repository of these docs are, [here](https://github.com/stavros-k/docs) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Networking | ||
--- | ||
title: Networking | ||
sidebar_position: 2 | ||
--- | ||
|
||
This section will include guides around networking. |
5 changes: 4 additions & 1 deletion
5
...se/7-automatic-backups/2-configuration.md → ...nsense/automatic-backups/configuration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
5 changes: 4 additions & 1 deletion
5
...g/2-opnsense/7-automatic-backups/index.md → ...rking/opnsense/automatic-backups/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...nse/7-automatic-backups/1-installation.md → ...pnsense/automatic-backups/installation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Installation | ||
--- | ||
title: Installation | ||
sidebar_position: 1 | ||
--- | ||
|
||
Navigate to `System` > `Firmware` > `Plugins` | ||
|
||
|
5 changes: 4 additions & 1 deletion
5
...etworking/2-opnsense/4-dhcp/2-boot-wds.md → docs/networking/opnsense/dhcp/boot-wds.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...king/2-opnsense/4-dhcp/1-configuration.md → ...networking/opnsense/dhcp/configuration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Configuration | ||
--- | ||
title: Configuration | ||
sidebar_position: 1 | ||
--- | ||
|
||
Navigate to `Services` -> `DHCPv4` -> `[LAN]*` | ||
|
||
|
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
5 changes: 4 additions & 1 deletion
5
docs/networking/2-opnsense/4-dhcp/index.md → docs/networking/opnsense/dhcp/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: DNS | ||
sidebar_position: 6 | ||
--- |
5 changes: 4 additions & 1 deletion
5
...sense/6-dns/1-resolver/1-configuration.md → ...ng/opnsense/dns/resolver/configuration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Configuration | ||
--- | ||
title: Configuration | ||
sidebar_position: 1 | ||
--- | ||
|
||
## Settings | ||
|
||
|
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: DNS Resolver | ||
sidebar_position: 1 | ||
--- |
5 changes: 4 additions & 1 deletion
5
...opnsense/8-dynamic-dns/2-configuration.md → ...ing/opnsense/dynamic-dns/configuration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Configuration | ||
--- | ||
title: Configuration | ||
sidebar_position: 2 | ||
--- | ||
|
||
:::tip | ||
|
||
|
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
5 changes: 4 additions & 1 deletion
5
...working/2-opnsense/8-dynamic-dns/index.md → .../networking/opnsense/dynamic-dns/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...-opnsense/8-dynamic-dns/1-installation.md → ...king/opnsense/dynamic-dns/installation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Installation | ||
--- | ||
title: Installation | ||
sidebar_position: 1 | ||
--- | ||
|
||
Navigate to `System` > `Firmware` > `Plugins` | ||
|
||
|
5 changes: 4 additions & 1 deletion
5
...orking/2-opnsense/9-firewall/2-aliases.md → docs/networking/opnsense/firewall/aliases.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...rking/2-opnsense/9-firewall/4-antiddos.md → .../networking/opnsense/firewall/antiddos.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Firewall | ||
sidebar_position: 9 | ||
--- |
Oops, something went wrong.