1
0

Added self hosted services page.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jens True 2021-04-25 19:00:06 +02:00
parent 87a0a3aac0
commit 863d7d11ca
10 changed files with 103 additions and 1 deletions

@ -13,6 +13,11 @@
url = "sailing/" url = "sailing/"
weight = 50 weight = 50
[[main]]
name = "Selfhosted"
url = "selfhosted/"
weight = 51
[[main]] [[main]]
name = "Posts" name = "Posts"
url = "post/" url = "post/"

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://build.jcktrue.dk'
label: Buildserver
icon_pack: fas
icon: cogs
cta_alt:
url: 'https://www.drone.io/'
label: Drone
cta_note:
label: 'Drone is a self-service Continuous Integration platform for busy development teams.'
---
Docker based build server system for modern CI/CD.

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://code.jcktrue.dk'
label: Code
icon_pack: fas
icon: code
cta_alt:
url: 'https://gitea.io/'
label: Gitea
cta_note:
label: 'Gitea is a community managed lightweight code hosting solution written in Go. It is published under the MIT license.'
---
Self hosted git service for hosting personal projects.

@ -0,0 +1,5 @@
+++
# Selfhosted services
type = "widget_page"
headless = false # Homepage is headless, other widget pages are not.
+++

15
content/selfhosted/irc.md Normal file

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://irc.jcktrue.dk'
label: IRC
icon_pack: fas
icon: hashtag
cta_alt:
url: 'https://thelounge.chat/'
label: The lounge
cta_note:
label: 'The self-hosted web IRC client. Always connected.'
---
Webbased IRC client/bouncer.

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://media.jcktrue.dk'
label: Media
icon_pack: fas
icon: film
cta_alt:
url: 'https://jellyfin.org/'
label: Jellyfin
cta_note:
label: 'Jellyfin is the volunteer-built media solution that puts you in control of your media. Stream to any device from your own server, with no strings attached. Your media, your server, your way.'
---
Media server for TV shows and movies. Mostly for inhouse use but may also be accessed from outside the network.

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://music.jcktrue.dk'
label: Music
icon_pack: fas
icon: music
cta_alt:
url: 'https://airsonic.github.io/'
label: Airsonic
cta_note:
label: 'Airsonic is a free, web-based media streamer, providing ubiquitous access to your music. Use it to share your music with friends, or to listen to your own music while at work. You can stream to multiple players simultaneously, for instance to one player in your kitchen and another in your living room.'
---
Media server for music and podcasts. Support for smartphones via the Sonic protocol allows streaming of music from anywhere with an internet connection.

15
content/selfhosted/ssh.md Normal file

@ -0,0 +1,15 @@
---
widget: hero
headless: true
cta:
url: 'https://ssh.jcktrue.dk'
label: SSH
icon_pack: fas
icon: shell
cta_alt:
url: 'https://github.com/nirui/sshwifty'
label: Sshwifty
cta_note:
label: 'An Open Source Web SSH Client that enables you to connect to SSH servers without download any additional software.'
---
Remote SSH access from anything, anywhere.

2
go.mod

@ -2,4 +2,4 @@ module code.jcktrue.dk/jct/jcktrue.dk
go 1.15 go 1.15
require github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210324194200-fda9f39d872e // indirect require github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210422192724-bfa3808cb6ec // indirect

2
go.sum

@ -30,3 +30,5 @@ github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210308212518-cf32fde
github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210308212518-cf32fde82412/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8= github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210308212518-cf32fde82412/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8=
github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210324194200-fda9f39d872e h1:pjf3ttOUrGyqXqFE5HD4zROl5nVD7X06ejz5TwLuwtk= github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210324194200-fda9f39d872e h1:pjf3ttOUrGyqXqFE5HD4zROl5nVD7X06ejz5TwLuwtk=
github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210324194200-fda9f39d872e/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8= github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210324194200-fda9f39d872e/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8=
github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210422192724-bfa3808cb6ec h1:hiiibzm2QgYhQ6LK6ow8zLFNP0PyfzWfdKX9i5rN3e4=
github.com/wowchemy/wowchemy-hugo-modules/wowchemy v0.0.0-20210422192724-bfa3808cb6ec/go.mod h1:H22qfH9qj3FWwsk7+bAZpmT24yRGNQURah2/IRwjbn8=