Hey hello, self-hosting noob here. I just want to know if anyone would know a good way to host my writing. Something akin to those webcomic sites, except for writing. Multiple stories with their own “sections” (?) and a chapter selection for each. Maybe a home page or profile page to just briefly detail myself or whatever, I don’t know. It doesn’t have to be fancy, and I apologize for not knowing how to describe this well. I’ve just been searching and searching and I don’t know what to look up to find what I want, it’s extremely frustrating. Any help is greatly appreciated.

Just find a static host for free instead of dealing with it yourself. Million out there.

adr1an
link
fedilink
English
44M

This is good advice. Learn about markdown syntax, try Obsidian to write notes that can be interrelated in a network, add drawings, and export selected notes to HTML. You can further stylize all of them with some custom CSS. There are many “content management system” (CMS) like Obsidian does. I’d self host ghostwriter. But just search for a CMS on awesome self hosted list and find something popular that’s akin to you for whatever features or underlying tech (e.g. Wagtail for django web devs)

Clay_pidgin
link
fedilink
English
74M

It sounds like you want a blog that lets you categorize or tag your entries to keep them together.

Max-P
link
fedilink
English
124M

Wordpress or some of its alternatives would probably work well for this. Another alternative would be static site generators, where you pretty much just write the content in Markdown.

It’s also a pretty simple project, it would be a great project to learn basic web development as well.

https://motherfuckingwebsite.com/ If it’s just text, you can probably make a static HTML website and accomplish your goals. I’m not sure what format it’s in now but Markdown is what I use and then just export to HTML.

If you just want to host epub (or equivalent files), you can still make a static page and link to them with Cloudflare Pages, GitHub.io, or one of many free static page hosting sites.

ThePowerOfGeek
link
fedilink
English
17
edit-2
4M

I don’t have a direct answer to your question. But I advise caution in putting your creative works online in the way you are planning. Between people plagiarizing it (either word for word or just the broader concepts) and AIs doing similar things, you could find that your work gets stolen.

Self-publishing might at least give you a bit of inherent copyright protection. Then at least you will have an ISBN associated to it, and you can always host your stories somewhere (WordPress, Medium, etc.).

If you want to self-publish your stories a free service like Smash Words would work.

Shin
creator
link
fedilink
English
104M

Thank you for the advice. Honestly, I’m a young 20 something that just wants to output creative stuff for people to read and enjoy. None of this really popped in my head, so thanks.

I still want to host my own site for it though, but I will consider the self publishing angle as well. Thanks for the advice.

Kid_Thunder
link
fedilink
4
edit-2
4M

Just to be clear, if you’re in the US, you 100% have copyright protection as soon as you put pen to paper.

Heads up on the copyright thing. Copyright is different nation to nation. @ThePowerOfGeek@lemmy.world seems to be out of the UK or EU. Not sure what the copyright situation is like there but here in the US, anything you write is already protected under US copyright laws from the moment it’s published (such as when I hit “post” here), subject to any applicable agreements you’ve entered into, of course.

You don’t HAVE to register your work for it to be under copyright protection, but to doing so would give you a stronger case if you ever decided to go to court over copyright. To register a work in the US you would do so through the Copyright Office.

In general though, @ThePowerOfGeek@lemmy.world is right though, you should assume anything you put out in the wild will be used in a manner you never intended, and that you may not like.

For examples of how helpful copyright protection is in a practical sense, might want to check out c/piracy.

CommunityLinkFixerBot
bot account
link
fedilink
English
24M

Hi there! Looks like you linked to a Lemmy community using a URL instead of its name, which doesn’t work well for people on different instances. Try fixing it like this: !piracy@lemmy.dbzer0.com

@solrize@lemmy.world
link
fedilink
English
104M

If you want a fancy multi-user site, the source code for archiveofourown.org is on github or gitlab (idr which). But for a small single user site I’d just go static. You could go full nerdy and write in texinfo then run an html converter. Texinfo is actually for computer manuals so it has chapters, sections, cross references, indexes, link navigation between pages, the whole bit. It is a markup language which I think is better than a wysiwyg formatter for documents that will be read in more than one way. I think there is a way to make epubs from texinfo docs.

In a sort of similar spirit there is Org mode (org-mode.org) but you have to be or become an Emacs zealot to use it.

Look also at pandoc.org which converts between lots of formats.

There is also writefreely. It is fairly basic, but says it supports “publish[ing] to multiple blogs from one account”. Haven’t really used it, but it looks kinda cool imo

https://github.com/writefreely/writefreely

poVoq
cake
link
fedilink
English
14M

It works nicely, but for some weird reason spammers really like it, so never open registrations on it.

blargerer
link
fedilink
24M

You can probably throw together a pretty simple wordpress website without much knowledge. Just keep it mostly out of the box, maybe change the theme.

For something like this, I think I would use Hugo to generate a static site. You write the post using markdown then tell Hugo to regenerate the site.

If you want to publish and receive comments or feedback via the fediverse, you might take a look at WriteFreely. Simpler to use but more complicated to setup.

Wordpress is also an option, but I personally don’t like it much. I spend all my time playing with all the knobs and never actually publish anything.

https://github.com/awesome-selfhosted/awesome-selfhosted#blogging-platforms

https://github.com/awesome-selfhosted/awesome-selfhosted?tab=readme-ov-file#content-management-systems-cms

The other day I saw someone hosting their blog on a GitHub repository.

Just using markdown files and folders to organise it to their liking.

If you are writing stories you could use a similar approach. A folder per story then subfolders for chapters. Then having the main page have links each story’s folder with links to each chapter inside.

@mbirth@lemmy.mbirth.uk
link
fedilink
English
24M

Sounds like GitHub Pages.

Apart from that, I like GRAV for small website projects. It works completely without a database (or in other words: it uses the filesystem as the database that it basically is) and backups/restores are simple copying everything to the right place.

Kid_Thunder
link
fedilink
34M

I see some comments recommending wordpress but wordpress is a security problem, especially if you’re using 3rd party plugins. It is such a bad problem that their are ‘wordpress security’ applications but even then wordpress sites get hacked all the time. If you are going to use it, it is best to let some other host handle it for you if you don’t know a whole lot about what you’re doing.

There are many, many other content management systems out there. Some are lighter than wordpress and some heavier. They are all about posting and managing content. Most of them have some sort of user and authoring system. Once you’re webserver is set up, many are written in a mixture of php and python so setting them up is generally drag and drop with either minor configuration file edits or wizards. Many of them have sections that you can set up using a labeling/tagging system. Most of them allow you to have the ‘stories’ as private or draft where you have to actually click publish before people can view them. Some have user roles systems where you can limit viewing and even editing between different roles for sections.

Generally, once their setup is done, they are point and click to do everything.

Here’s a nice list of FOSS CMS’ (which includes Wordpress of course).

@UNY0N@lemmy.world
link
fedilink
English
14M

https://obsidian.md/publish

Obsidian is awesome, and obsidian publish costs money but it’s very easy to use.

@Opisek@lemmy.world
link
fedilink
English
14M

There are obsidian plugins that export into static pages.

@UNY0N@lemmy.world
link
fedilink
English
14M

Also a great idea, I didn’t know that.

lemmyvore
link
fedilink
English
2
edit-2
4M

A static site generator (Hugo would be great for your needs) and host the files on a CDN like bunny.net. It costs $1/month for 100 GB transfer included and you pay 1 cent/GB above that. But I sincerely doubt a small personal website that’s mostly text will serve more than 100 GB/month.

Hosting on a CDN is amazing because they have dozens of redundant distribution points all over the world, can easily scale to traffic spikes, you never have to worry about consuming too much CPU or RAM or about security issues etc.

Encrypt-Keeper
link
fedilink
English
24M

https://ghost.org/ would probably work pretty well for you.

@maryjayjay@lemmy.world
link
fedilink
English
14M

What part of that is self hosted?

Russ
link
fedilink
English
24M

They have their own hosting plans, but you can also self host it.

@maryjayjay@lemmy.world
link
fedilink
English
24M

I looked for that on their site but missed it and found the pricing instead. Thanks! I’m definitely going to check that out

Encrypt-Keeper
link
fedilink
English
54M

The part where you self host it? I don’t understand the question.

@maryjayjay@lemmy.world
link
fedilink
English
24M

Sorry, I didn’t find the self hosting option when I looked at the site. I see it now. Thanks!

Encrypt-Keeper
link
fedilink
English
14M

Oh that’s what you mean, yeah they don’t make it easy to find. I only linked their site so OP could see the feature set. I run it in docker, and remove all the nonsense membership and newsletter features and buttons.

Create a post

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don’t control.

Rules:

  1. Be civil: we’re here to support and learn from one another. Insults won’t be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it’s not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don’t duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

  • 1 user online
  • 279 users / day
  • 589 users / week
  • 1.34K users / month
  • 4.55K users / 6 months
  • 1 subscriber
  • 3.5K Posts
  • 70K Comments
  • Modlog