diff --git a/Gemfile b/Gemfile index 42caa35..062b36f 100644 --- a/Gemfile +++ b/Gemfile @@ -4,4 +4,5 @@ source "https://rubygems.org" gem 'jekyll' gem "jekyll-theme-potato-hacker" gem 'github-pages', group: :jekyll_plugins -# gem "rails" +gem 'jekyll-feed' +gem 'jekyll-seo-tag' diff --git a/_changelog/changelog.md b/_changelog/changelog.md new file mode 100644 index 0000000..ed9388e --- /dev/null +++ b/_changelog/changelog.md @@ -0,0 +1,27 @@ +--- +layout: default1 +title: Changelog +permalink: /changelog +--- + +--- + +# v1.0 + +- Added new page ``Services.md`` + +- Reformatting old blog post + +- New Jekyll plugin ``jekyll-feed`` + +- New Jekyll plugin ``jekyll-seo-tag`` + +- New ``_changelog`` folder along with ``changelog.md`` + +- Fix formatting error on ``Services.md`` + +- Added RSS feed for ``posts`` and for ``changelog`` + +- Updated file naming to be consistent + +- Reformat buttons on ``index.md`` diff --git a/_config.yml b/_config.yml index 0f7e784..aa50844 100644 --- a/_config.yml +++ b/_config.yml @@ -3,23 +3,25 @@ remote_theme: luxedo/jekyll-theme-potato-hacker theme_base: "dark" theme_switch: off blog: on -avatar: off -highlighter_theme: monokai # Theme of the syntax_highlighter [base16 | - # colorful | github | gruvbox | molokai | - # monokai | pastie | thankful_eyes | tulip ] -toolbar_priority: - - Guides - - dropdown1 - - dropdown2 +highlighter_theme: monokai +toolbar_priority: - blog - collections: .well-known: output: true permalink: /:collection/:path/ - guide: - output: true - dropdown: - output: true items: - output: true \ No newline at end of file + output: true + changelog: + output: true + pages: + output: true +exclude: + - Gemfile + - Gemfile.lock +plugins: + - jekyll-feed + - jekyll-seo-tag +feed: + collections: + - changelog \ No newline at end of file diff --git a/_items/Another guide.md b/_items/Another guide.md index 149656c..e43c681 100644 --- a/_items/Another guide.md +++ b/_items/Another guide.md @@ -1,7 +1,9 @@ --- layout: default1 description: Just... a guide -title: Another Guide +title: Guide +permalink: /guide +priority: 1 ---
@@ -142,6 +144,8 @@ More on this subject will be later in this _guide._ * Do not be lazy +People may think you are paranoid, but in a world like this it *is* useful to be even a bit paranoid. This will allow you to see the true realities of the world. If you are always thinking of ways you can be compromised, you'd actually likely reduce your risk due to the fact of you constantly thinking about it, rather than just "not really thinking" about it, or rather as often as you should. Privacy and security are constantly evolving, which means that you will have to evolve with it. Are you ready for a data breach? What are you going to do if your compromised? Questions like these are what you need to ask yourself in order to be successful, you must always have a backup plan that you can execute. +
#### __Setting Goals__ diff --git a/_items/donate.md b/_items/Donate.md similarity index 92% rename from _items/donate.md rename to _items/Donate.md index 2073ca5..a5790e8 100644 --- a/_items/donate.md +++ b/_items/Donate.md @@ -2,6 +2,7 @@ layout: default1 title: Donate description: money +permalink: /donate --- ## Donations diff --git a/_items/Services.md b/_items/Services.md new file mode 100644 index 0000000..5389fdf --- /dev/null +++ b/_items/Services.md @@ -0,0 +1,73 @@ +--- +layout: default1 +description: List of services +title: Services +permalink: /services +--- + + +### __Services__ + +These services are publicly available and free to use. +These services are not intended to spread spam or malicious content, or sharing / distributing / hosting of malicious content. + +
+ +*Everything done on these services **MUST** remain legal.* + +
+ +Your account *can* be suspended if you take part in any sort of malicious activity ranging from targeted harassment, raids, discussing illegal activities, conducting illegal activities or any questionable content. + +
+ +### __Privacy / Security__ + +As nature of this website, privacy and security must be our main priority, the following is currently in effect: + +- nginx logging is disabled. + +- Matrix IP addresses are logged for 1 hour then they are purged from the database. + +- Matrix federation is enabled. + +- Ratelimiting actions is currently set as default on Matrix, and can be easily re-enabled if needed, do not ruin this for others. + +- Matrix URL previews are allowed + +- We are currently not using a CAPTCHA for registration or requiring an Email, CAPTCHA will be enabled if abuse happens! + +- Registration is open, if abuse takes place, registration will turn to an invite-only system. + +- Password hashing bcrypt rounds are set to 15. + +- Guest access is currently enabled, and will be disabled if abuse takes place. + +- Registered users are automatically joined into the lounges, this is to help prevent abuse! + +- Moderation is done via ``mjolnir``, let us keep this ban list to a minimum. + +- Matrix metrics are disabled. + + +
+ +#### __Matrix__ + +The Matrix homeserver is located at + +``https://matrix.anonymousland.org`` + +As of currently, we do not offer a self-hosted Element instance, as it takes up server resources and there is no current need for our self-hosted platform. + +Password Policy: + +- 15 characters + +- Require at least 1 digit + +- Require at least 1 symbol + +- At least 1 lowercase character + +- At least 1 uppercase character \ No newline at end of file diff --git a/_items/tools.md b/_items/tools.md index 5785ece..984ce93 100644 --- a/_items/tools.md +++ b/_items/tools.md @@ -2,6 +2,7 @@ layout: default1 description: Tools to use for your benefit title: Tools +permalink: /tools ---
diff --git a/_layouts/default1.html b/_layouts/default1.html index ea7ee8e..6170ae6 100644 --- a/_layouts/default1.html +++ b/_layouts/default1.html @@ -2,6 +2,7 @@ --- +{% seo %} {% include head.html %} diff --git a/_layouts/txt.html b/_layouts/txt.html deleted file mode 100644 index 7f63ffd..0000000 --- a/_layouts/txt.html +++ /dev/null @@ -1,3 +0,0 @@ ---- ---- -{{ content }} \ No newline at end of file diff --git a/_pages/RSS.md b/_pages/RSS.md new file mode 100644 index 0000000..fd64823 --- /dev/null +++ b/_pages/RSS.md @@ -0,0 +1,9 @@ +--- +layout: default1 +title: RSS +permalink: /rss +--- + +- [Blog](https://anonymousland.org/feed.xml) + +- [Changelog](https://anonymousland.org/feed/changelog.xml) \ No newline at end of file diff --git a/_posts/2022-04-23-VM-Isolation.md b/_posts/2022-04-23-VM-Isolation.md index b73ea85..287836f 100644 --- a/_posts/2022-04-23-VM-Isolation.md +++ b/_posts/2022-04-23-VM-Isolation.md @@ -6,16 +6,11 @@ categories: blog layout: post --- - -### 4/23/22 - -##### Credits: 0xTheFather - -VM Isolation Guide - VM Isolation Guide ------------------ +Credits: 0xTheFather + As an alternate to using QubesOS, here is how one can properly setup isolation. This setup will provide proper isolation utilizing VMs and a secure host OS. This will provide increased security via isolation along with increased privacy with compartmentalization. Things needed for this setup: diff --git a/index.md b/index.md index 649dcd9..b944e53 100644 --- a/index.md +++ b/index.md @@ -15,7 +15,24 @@ description: A fun happy place.
- Please Contribute! +
+
+ + + +
+
+ + + + + + + + + + +


@@ -23,15 +40,9 @@ description: A fun happy place.

Coming Soon:

Mastadon Instance - - RSS Feed - - Forum
  • About - - - Contact - - - Donate