@ -0,0 +1,21 @@ |
||||
# Dependencies |
||||
/node_modules |
||||
/.idea |
||||
|
||||
# Production |
||||
/build |
||||
|
||||
# Generated files |
||||
.docusaurus |
||||
.cache-loader |
||||
|
||||
# Misc |
||||
.DS_Store |
||||
.env.local |
||||
.env.development.local |
||||
.env.test.local |
||||
.env.production.local |
||||
|
||||
npm-debug.log* |
||||
yarn-debug.log* |
||||
yarn-error.log* |
@ -0,0 +1,3 @@ |
||||
module.exports = { |
||||
presets: [require.resolve('@docusaurus/core/lib/babel/preset')], |
||||
}; |
@ -0,0 +1,52 @@ |
||||
module.exports = { |
||||
title: 'DeinServerHost Wiki', |
||||
tagline: 'Das DeinServerHost Wiki bietet dir Informationen rund um uns und deine Dienste bei uns.', |
||||
url: 'https://docu.salty.cloud/', |
||||
baseUrl: '/wiki/', |
||||
onBrokenLinks: 'throw', |
||||
onBrokenMarkdownLinks: 'warn', |
||||
favicon: 'img/favicon.png', |
||||
organizationName: 'lightgreenwings', // Usually your GitHub org/user name.
|
||||
projectName: 'dsh-docu', // Usually your repo name.
|
||||
themeConfig: { |
||||
colorMode: { |
||||
defaultMode: 'dark', |
||||
disableSwitch: true, |
||||
respectPrefersColorScheme: false, |
||||
}, |
||||
navbar: { |
||||
title: '', |
||||
logo: { |
||||
alt: 'DeinServerHost Dokumentation', |
||||
src: 'img/deinserverhost.png', |
||||
}, |
||||
items: [ |
||||
{ |
||||
href: 'https://deinserverhost.de/store/login.php', |
||||
label: 'Zum Kundenbereich', |
||||
position: 'right', |
||||
}, |
||||
], |
||||
}, |
||||
footer: { |
||||
style: 'dark', |
||||
links: [], |
||||
copyright: `Copyright © 2013 - ${new Date().getFullYear()} DeinServerHost | <a href="https://deinserverhost.de/impressum.php">Impressum</a> <a href="https://deinserverhost.de/agb.php">AGB</a> <a href="https://deinserverhost.de/datenschutz.php">Datenschutz</a>`, |
||||
}, |
||||
}, |
||||
presets: [ |
||||
[ |
||||
'@docusaurus/preset-classic', |
||||
{ |
||||
docs: { |
||||
sidebarPath: require.resolve('./sidebars.js'), |
||||
path: 'wiki', |
||||
routeBasePath: '/', |
||||
}, |
||||
theme: { |
||||
customCss: require.resolve('./src/css/custom.css'), |
||||
}, |
||||
}, |
||||
], |
||||
], |
||||
}; |
@ -0,0 +1,60 @@ |
||||
module.exports = { |
||||
title: 'DeinServerHost Wiki', |
||||
tagline: 'Das DeinServerHost Wiki bietet dir Informationen rund um uns und deine Dienste bei uns.', |
||||
url: 'https://docu.salty.cloud/', |
||||
baseUrl: 'https://docu.salty.cloud/wiki/', |
||||
onBrokenLinks: 'throw', |
||||
onBrokenMarkdownLinks: 'warn', |
||||
favicon: 'img/favicon.png', |
||||
organizationName: 'lightgreenwings', // Usually your GitHub org/user name. |
||||
projectName: 'dsh-docu', // Usually your repo name. |
||||
themeConfig: { |
||||
colorMode: { |
||||
defaultMode: 'dark', |
||||
disableSwitch: true, |
||||
respectPrefersColorScheme: false, |
||||
}, |
||||
navbar: { |
||||
title: '', |
||||
logo: { |
||||
alt: 'DeinServerHost Dokumentation', |
||||
src: 'img/deinserverhost.png', |
||||
}, |
||||
items: [ |
||||
{ |
||||
to: '/', |
||||
activeBasePath: 'wiki', |
||||
label: 'Wiki', |
||||
position: 'left', |
||||
}, |
||||
{ |
||||
href: 'https://deinserverhost.de/store/login.php', |
||||
label: 'Zum Kundenbereich', |
||||
position: 'right', |
||||
}, |
||||
], |
||||
}, |
||||
footer: { |
||||
style: 'dark', |
||||
links: [], |
||||
copyright: `Copyright © 2013 - ${new Date().getFullYear()} DeinServerHost | <a href="https://deinserverhost.de/impressum.php">Impressum</a> <a href="https://deinserverhost.de/agb.php">AGB</a> <a href="https://deinserverhost.de/datenschutz.php">Datenschutz</a>`, |
||||
}, |
||||
}, |
||||
presets: [ |
||||
[ |
||||
'@docusaurus/preset-classic', |
||||
{ |
||||
docs: { |
||||
sidebarPath: require.resolve('./sidebars.js'), |
||||
// Please change this to your repo. |
||||
editUrl: |
||||
'https://github.com/lightgreenwings/doc-files/', |
||||
|
||||
}, |
||||
theme: { |
||||
customCss: require.resolve('./src/css/custom.css'), |
||||
}, |
||||
}, |
||||
], |
||||
], |
||||
}; |
@ -0,0 +1,34 @@ |
||||
{ |
||||
"name": "docu-salty-cloud", |
||||
"version": "0.0.0", |
||||
"private": true, |
||||
"scripts": { |
||||
"docusaurus": "docusaurus", |
||||
"start": "docusaurus start", |
||||
"build": "docusaurus build", |
||||
"swizzle": "docusaurus swizzle", |
||||
"deploy": "docusaurus deploy", |
||||
"serve": "docusaurus serve", |
||||
"clear": "docusaurus clear" |
||||
}, |
||||
"dependencies": { |
||||
"@docusaurus/core": "2.0.0-alpha.70", |
||||
"@docusaurus/preset-classic": "2.0.0-alpha.70", |
||||
"@mdx-js/react": "^1.6.21", |
||||
"clsx": "^1.1.1", |
||||
"react": "^16.8.4", |
||||
"react-dom": "^16.8.4" |
||||
}, |
||||
"browserslist": { |
||||
"production": [ |
||||
">0.5%", |
||||
"not dead", |
||||
"not op_mini all" |
||||
], |
||||
"development": [ |
||||
"last 1 chrome version", |
||||
"last 1 firefox version", |
||||
"last 1 safari version" |
||||
] |
||||
} |
||||
} |
@ -0,0 +1,136 @@ |
||||
module.exports = { |
||||
docs: [ |
||||
{ |
||||
ALLGEMEINES: ['home', 'prepaid', 'elterninformation'], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'DOMAINS', |
||||
items: [ |
||||
'domains/home', |
||||
'domains/dns-allgemein', |
||||
'domains/subdomain-erstellen', |
||||
{ |
||||
'DNS Records': ['domains/dns/a-record-erstellen', 'domains/dns/aaaa-record-erstellen', 'domains/dns/cname-record-erstellen', 'domains/dns/mx-record-erstellen', 'domains/dns/srv-record-erstellen', 'domains/dns/txt-record-erstellen'], |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'GAMESERVER', |
||||
items: [ |
||||
'gameserver/home', |
||||
{ |
||||
'Eigene Server': [ |
||||
|
||||
'valheim/valheim-server-erstellen' |
||||
|
||||
],
|
||||
'Unsere Server': [ |
||||
{ |
||||
'Minecraft': [ |
||||
'gameserver/minecraft-gameserver', |
||||
'gameserver/minecraft-gameserver-befehle', |
||||
{ |
||||
'Plugins': [ |
||||
'gameserver/minecraft-gameserver-spigot-installieren', |
||||
'gameserver/minecraft-gameserver-plugins-installieren', |
||||
], |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
'Rust': [ |
||||
'gameserver/rust-gameserver', |
||||
], |
||||
}, |
||||
], |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'RESELLER', |
||||
items: [ |
||||
'reseller/reseller-informationen', |
||||
'reseller/deinserverhost-whmcs-modul', |
||||
|
||||
{ 'DeinServerHost API': [ |
||||
|
||||
'reseller/api/reseller-api', |
||||
{ |
||||
'Allgemeine Funktionen': [
|
||||
"reseller/api/allgemein/fuktionen", |
||||
"reseller/api/allgemein/addCancallationRequest", |
||||
"reseller/api/allgemein/getServiceInformations" |
||||
], |
||||
'DDoS Funktionen': [ |
||||
"reseller/api/ddos/fuktionen", |
||||
"reseller/api/ddos/incidents", |
||||
"reseller/api/ddos/layer4_activate", |
||||
"reseller/api/ddos/layer4_deactivate", |
||||
"reseller/api/ddos/layer7_activate", |
||||
"reseller/api/ddos/layer7_deactivate", |
||||
"reseller/api/ddos/layer7_onlyon", |
||||
"reseller/api/ddos/layer7_onlyoff", |
||||
"reseller/api/ddos/setrdns", |
||||
"reseller/api/ddos/status", |
||||
], |
||||
'Dedicated Funktionen': [ |
||||
"reseller/api/dedicated/fuktionen", |
||||
"reseller/api/dedicated/statusServer", |
||||
"reseller/api/dedicated/startServer", |
||||
"reseller/api/dedicated/stopServer", |
||||
"reseller/api/dedicated/resetServer", |
||||
"reseller/api/dedicated/reinstallServer", |
||||
"reseller/api/dedicated/getInstallStatus", |
||||
"reseller/api/dedicated/cancelReinstall" |
||||
|
||||
], |
||||
} |
||||
]}, |
||||
], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'SOFTWARES', |
||||
items: [ |
||||
'software-installation/debian-chrome-installieren', |
||||
'software-installation/debian-cockpit-installieren', |
||||
'software-installation/debian-cronjobs-einstellen', |
||||
'software-installation/debian-docker-installieren', |
||||
'software-installation/debian-fail2ban-installieren', |
||||
'software-installation/debian-java-8-installieren', |
||||
'software-installation/debian-mariadb-installieren', |
||||
'software-installation/debian-nano-installieren', |
||||
'software-installation/debian-phpmyadmin-installieren', |
||||
'software-installation/debian-sudo-installieren', |
||||
'software-installation/nomachine-grafische-oberfläche-installieren', |
||||
'software-installation/teamspeak-server-installieren' |
||||
], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'WEBSPACE', |
||||
items: [ |
||||
'webspace/plesk-datenbank-erstellen', |
||||
'webspace/plesk-domain-verbinden', |
||||
'webspace/plesk-email-erstellen', |
||||
'webspace/plesk-ssl-einrichten', |
||||
], |
||||
}, |
||||
{ |
||||
type: 'category', |
||||
label: 'ANDERE PRODUKTE', |
||||
items: [ |
||||
{ |
||||
'MUSIKBOT': [ |
||||
'musikbot/musik-hochladen', |
||||
'musikbot/musikbot-teamspeak-verbinden', |
||||
'musikbot/musikbot-discord-verbinden', |
||||
] |
||||
} |
||||
], |
||||
}, |
||||
], |
||||
}; |
@ -0,0 +1,71 @@ |
||||
:root { |
||||
--ifm-color-primary: rgb(240, 132, 0); |
||||
--ifm-color-primary-dark: rgb(240, 132, 0); |
||||
--ifm-color-primary-darker: rgb(240, 132, 0); |
||||
--ifm-color-primary-darkest: rgb(240, 132, 0); |
||||
--ifm-color-primary-light: rgb(240, 132, 0); |
||||
--ifm-color-primary-lighter: rgb(240, 132, 0); |
||||
--ifm-color-primary-lightest: rgb(240, 132, 0); |
||||
--ifm-code-font-size: 95%; |
||||
} |
||||
|
||||
.docusaurus-highlight-code-line { |
||||
background-color: #e07b00; |
||||
display: block; |
||||
margin: 0 calc(-1 * var(--ifm-pre-padding)); |
||||
padding: 0 var(--ifm-pre-padding); |
||||
} |
||||
|
||||
.table-of-contents__link--active, .table-of-contents__link--active code, .table-of-contents__link:hover, .table-of-contents__link:hover code, a:hover, .button--link, a { |
||||
color: #f08400; |
||||
} |
||||
.footer--dark { |
||||
background-color: var(--ifm-navbar-background-color) !important; |
||||
} |
||||
blockquote{ |
||||
color: var(--ifm-font-color-base); |
||||
background-color: #232527; |
||||
border-color: #f08400; |
||||
} |
||||
code{ |
||||
color: #dca52a; |
||||
background-color: transparent; |
||||
} |
||||
kbd{ |
||||
border-color: #3c3c3c; |
||||
background-color: #292929; |
||||
} |
||||
table tr{ |
||||
border: none; |
||||
} |
||||
table thead{ |
||||
border-bottom: var(--ifm-table-border-width) solid var(--ifm-table-border-color); |
||||
} |
||||
table tbody tr{ |
||||
border-top: var(--ifm-table-border-width) solid var(--ifm-table-border-color); |
||||
} |
||||
table th, table td{ |
||||
border: none; |
||||
} |
||||
.prism-code > div{ |
||||
background-color: #232527 !important; |
||||
} |
||||
@media only screen and (max-width: 996px){ |
||||
.row{ |
||||
flex-wrap: wrap; |
||||
} |
||||
.container{ |
||||
max-width: initial; |
||||
} |
||||
} |
||||
@media (min-width: 997px) and (max-width: 1320px){ |
||||
.container { |
||||
max-width: calc(100vw - var(--doc-sidebar-width)) !important; |
||||
} |
||||
} |
||||
.container{ |
||||
max-width: calc(100vw - var(--doc-sidebar-width) - 200px); |
||||
} |
||||
.row{ |
||||
flex-wrap: nowrap; |
||||
} |
@ -0,0 +1,43 @@ |
||||
import React from 'react'; |
||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; |
||||
import {Redirect} from '@docusaurus/router'; |
||||
import Head from '@docusaurus/Head'; |
||||
import Layout from '@theme/Layout'; |
||||
|
||||
|
||||
function Home() { |
||||
const context = useDocusaurusContext(); |
||||
const { siteConfig = {} } = context; |
||||
return ( |
||||
<Layout> |
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
||||
<meta name="keywords" content="Domains,Webspaces,vServer,Rootserver,Dedicated Server,Gameserver,PrePaid,DeinServerHost.de,wiki,tutorials,hilfe,anleitungen,leicht,easy" /> |
||||
<meta name="description" content="Alle Informationen rund um deine Dienste bei DeinServerHost.de findest du hier. Installationsanleitungen, Tipps und Einsteigerturorials." /> |
||||
<title>DeinServerHost Wiki</title> |
||||
<meta property="og:locale" content="de_DE" /> |
||||
<meta property="og:type" content="website" /> |
||||
<meta property="og:title" content="DeinServerHost Wiki" /> |
||||
<meta property="og:description" content="Alle Informationen rund um deine Dienste bei DeinServerHost.de findest du hier. Installationsanleitungen, Tipps und Einsteigerturorials." /> |
||||
<meta property="og:url" content="https://deinserverhost.de/wiki" /> |
||||
<meta property="og:site_name" content="DeinServerHost" /> |
||||
<meta property="og:image" content="https://deinserverhost.de/wiki/img/preview.png" /> |
||||
<meta name="twitter:card" content="summary" /> |
||||
<meta name="twitter:description" content="Alle Informationen rund um deine Dienste bei DeinServerHost.de findest du hier. Installationsanleitungen, Tipps und Einsteigerturorials." /> |
||||
<meta name="twitter:title" content="DeinServerHost Wiki" /> |
||||
<meta name="twitter:image" content="https://deinserverhost.de/wiki/img/preview.png" /> |
||||
|
||||
<meta name="robots" content="index, follow" /> |
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
||||
<meta http-equiv="cache-control" content="cache" /> |
||||
<meta http-equiv="content-language" content="de" /> |
||||
<meta http-equiv="revisit-after" content="3 Tagen" /> |
||||
</head> |
||||
<Redirect to="/wiki/home" /> |
||||
</Layout> |
||||
); |
||||
} |
||||
|
||||
export default Home; |
@ -0,0 +1,37 @@ |
||||
/* stylelint-disable docusaurus/copyright-header */ |
||||
|
||||
/** |
||||
* CSS files with the .module.css suffix will be treated as CSS modules |
||||
* and scoped locally. |
||||
*/ |
||||
|
||||
.heroBanner { |
||||
padding: 4rem 0; |
||||
text-align: center; |
||||
position: relative; |
||||
overflow: hidden; |
||||
} |
||||
|
||||
@media screen and (max-width: 966px) { |
||||
.heroBanner { |
||||
padding: 2rem; |
||||
} |
||||
} |
||||
|
||||
.buttons { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
} |
||||
|
||||
.features { |
||||
display: flex; |
||||
align-items: center; |
||||
padding: 2rem 0; |
||||
width: 100%; |
||||
} |
||||
|
||||
.featureImage { |
||||
height: 200px; |
||||
width: 200px; |
||||
} |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 738 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 33 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 89 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 123 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 52 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 49 KiB |
After Width: | Height: | Size: 88 KiB |
After Width: | Height: | Size: 110 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 283 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 190 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 3.3 MiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 439 KiB |
After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 915 B |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 222 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 160 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 130 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 170 KiB |