GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by Reilly Chase (rchase@social.hostifi.com)

  1. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Sunday, 08-Jan-2023 03:24:07 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    Good info!
    In conversation Sunday, 08-Jan-2023 03:24:07 JST from social.hostifi.com permalink
  2. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Friday, 06-Jan-2023 12:10:56 JST Reilly Chase Reilly Chase
    • Alex Gleason
    @alex Does Soapbox not have the rel=me link verification stuff that Mastodon has?
    In conversation Friday, 06-Jan-2023 12:10:56 JST from social.hostifi.com permalink
  3. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Sunday, 01-Jan-2023 01:12:32 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • ?? أحمد ??
    • KemzoPS
    Thanks was just thinking from security perspective since I'm not using it, less surface the better!
    In conversation Sunday, 01-Jan-2023 01:12:32 JST from social.hostifi.com permalink
  4. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Sunday, 01-Jan-2023 01:03:37 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • ?? أحمد ??
    • KemzoPS
    Is there an easy way to disable it?
    In conversation Sunday, 01-Jan-2023 01:03:37 JST from social.hostifi.com permalink
  5. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Sunday, 01-Jan-2023 01:03:35 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • ?? أحمد ??
    • KemzoPS
    I meant disable Admin FE
    In conversation Sunday, 01-Jan-2023 01:03:35 JST from social.hostifi.com permalink
  6. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 11:14:49 JST Reilly Chase Reilly Chase
    in reply to
    • cam
    And no $8!
    In conversation Tuesday, 27-Dec-2022 11:14:49 JST from social.hostifi.com permalink
  7. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 11:14:45 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • cam
    Stripe integration plz @alex ?
    In conversation Tuesday, 27-Dec-2022 11:14:45 JST from social.hostifi.com permalink
  8. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:28:31 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    Can you do a Twitter mode for us people who want to map heart to thumbs up/favorite and then remove all other emojis? Seems like if you're removing the ability to thumbs up and mapping heart to it then it's just a frontend decision with no backend incompatibility issue.
    In conversation Tuesday, 27-Dec-2022 09:28:31 JST from social.hostifi.com permalink
  9. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:23:54 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    Ok sick I'll wait for the update rather than do something hacky thanks!
    In conversation Tuesday, 27-Dec-2022 09:23:54 JST from social.hostifi.com permalink
  10. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:19:52 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • cameronbanga
    That's what we figured since my Toot! app worked they must have just locked it down, maybe they'll change their minds.
    In conversation Tuesday, 27-Dec-2022 09:19:52 JST from social.hostifi.com permalink
  11. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:19:32 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • Reilly Chase
    I ran into a lot of issues with this error originally:

    "FATAL: remaining connection slots are reserved for non-replication superuser connections."

    Indicating there were too many db connections in use. After I added these lines to config/prod.secret.exs it went away:

    pool_size: 10,
    queue_target: 5000

    I also created a db pool on the DigitalOcean managed db to allow up to 22 connections (max for my 1GB RAM db instance).

    I am running a 1GB RAM 1vCPU VPS instance as well, after reading your post recommending 4GB RAM 2vCPU I upgraded the VPS to 2GB RAM 2vCPU (even though it was actually running fine as is but I also just started out...)
    In conversation Tuesday, 27-Dec-2022 09:19:32 JST from social.hostifi.com permalink
  12. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:19:32 JST Reilly Chase Reilly Chase
    • Alex Gleason
    Hey @alex I finally got Rebased + Soapbox installed on a DigitalOcean VPS with a DigitalOcean managed Postgres db.

    Maybe I'll write a blog post later if I get time... some of these Pleroma db options were pretty difficult to track down between StackOverflow/git issues/forums.

    There were some extra steps like:
    • Manually create postgres and pleroma dbs at DigitalOcean
    • Connect to the db remotely (I used TablePlus GUI) then execute the SQL in the config/setup_db.psql file on the managed db
    • Download the ca cert from DigitalOcean managed db and transfer the file to /opt/pleroma/ca-certificate.crt
    • Create a db pool at DigitalOcean with max 22 connections for the 1GB RAM db instance
    • Modify config/prod.secret.exs and add the ssl, port, ssl_opts, pool_size, and queue_target options below:

    config :pleroma, Pleroma.Repo,
    adapter: Ecto.Adapters.Postgres,
    username: "user",
    password: "password",
    database: "pleroma",
    hostname: "my-unique-id.b.db.ondigitalocean.com",
    port: 25060,
    ssl: true,
    ssl_opts: [verify: :verify_peer, cacertfile: '/opt/pleroma/ca-certificate.crt'],
    pool_size: 10,
    queue_target: 5000
    In conversation Tuesday, 27-Dec-2022 09:19:32 JST from social.hostifi.com permalink

    Attachments


  13. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:19:31 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • Reilly Chase
    Also was wondering, no matter which reaction I give to a post of someone on a Mastodon server, they're going to just see that I "Favourite"'d it right?

    I want to set my server to heart reactions only to be more Twitter-like, you said this was possible via a config file, can you point me to any doc on that I couldn't find it?
    In conversation Tuesday, 27-Dec-2022 09:19:31 JST from social.hostifi.com permalink
  14. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:17:21 JST Reilly Chase Reilly Chase
    • cameronbanga
    Myspace top 8 is back ? @cameronbanga
    In conversation Tuesday, 27-Dec-2022 09:17:21 JST from social.hostifi.com permalink

    Attachments


    1. https://nyc3.digitaloceanspaces.com/social-hostifi-com/16cfb31a-0fbe-4993-a150-44267a3cefc7/image.png
  15. Embed this notice
    Reilly Chase (rchase@social.hostifi.com)'s status on Tuesday, 27-Dec-2022 09:17:15 JST Reilly Chase Reilly Chase
    in reply to
    • Alex Gleason
    • cameronbanga
    Oh bummer, as far as I knew it was fully backwards compatible with Mastodon API calls cc: @alex

    You should use Safari to go to social.hostifi.com and "Add to Home Screen" to try out the Twitter UX in a sorta native feel any ways!
    In conversation Tuesday, 27-Dec-2022 09:17:15 JST from social.hostifi.com permalink

    Attachments


User actions

    Reilly Chase

    Reilly Chase

    CEO HostiFi cloud hosting and services for Ubiquiti things

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          80941
          Member since
          27 Dec 2022
          Notices
          15
          Daily average
          0

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.