Content warning: Hallo zusammen im #Fediverse, kennt irgendwer diesen Service? Wenn ich das richtig verstehe, soll das eine Möglichkeit sein, so eine Art "Interessengruppen" oder "Foren" im Fediverse zu bilden. Entweder auf der Seite schauen, welche "Gruppen" es schon gib
Content warning: I did a #test of the #fediverse. I created a #Diaspora, #Friendica and #Mastodon account. In all 3 accounts I did a post with the tag #annievallotton. Friendica uses the Diaspora protocol and ActivityPub and Mastodon uses Activity pub. The Friendica accou
Storing things encrypted on the server is only useful if you can separate data storage from data retrieval/decryption physically and logically. If the party who runs a theoretical zero-knowledge storage is the same party that provides you with the client to retrieve and decrypt the data, the whole encryption is worthless since a rouge podmin could simply serve you a client that sends them a copy of your decryption key. Since diaspora* is first and foremost a browser-based application, your pod ...discourse.diasporafoundation.org
Hypertext Transfer Protocol Secure – Wikipediade.wikipedia.org
Hallo liebe #neuhier Leute,
falls ihr euch fragt, wem ihr am Anfang folgen sollt:
Es gibt eine Menge Accounts, die Content federieren. Hier eine kleine Auswahl, einfach die "Mailadresse" als Diaspora-Kontakt hinzufügen, und schon erhaltet ihr Posts in eurem Stream.
(Hierfür müsst ihr die Mailadresse markieren, kopieren und in das Suchfeld oben eintragen. So wird euch der Account als "Diaspora-Kontakt" angezeigt, und ihr könnt ihm folgen.)
Viel Spaß hier!
Nachrichten
- Al Jazeera (unofficial) aljazeera@squeet.me
- BildBlog bildblog@friendica.produnis.de
- Deutsche Welle (inoffiziell) deutschewelle@squeet.me
- Deutschlandfunk (inoffiziell) deutschlandfunk@squeet.me
- Faktenfinder Tagessch. (inof) faktenfinder@friendica.produnis.de
- heise online (inoffiziell) heiseonline@squeet.me
- Nachdenkseiten (inoffiziell) nachdenkseiten@friendica.produnis.de
- SPIEGELonline (inoffiziell) spon@friendica.produnis.de
- Süddeutsche (inoffiziell) sueddeutsche@diaspora.town
- Ta...
cd /home/diaspora/diaspora
rvm current
/bin/bash -lc "rvm current"
diaspora@computer:~/diaspora$ rvm current
ruby-2.6.5@diaspora
diaspora@computer:~/diaspora$ /bin/bash -lc "rvm current"
ruby-2.6.5@diaspora
/bin/bash -lc "bin/bundle exec unicorn -c config/unicorn.rb -E production"
/bin/bash -lc "bin/bundle exec sidekiq"
cd /etc/systemd/system/
sudo nano diaspora.target
[Unit]
Description=diaspora\* social network
## Postgres section
#Wants=postgresql.service redis-server.service
#After=redis-server.service syslog.target network.target postgresql.service
## MySQL section
Wants=redis-server.service
After=redis-server.service syslog.target network.target mysqld.service
[Install]
WantedBy=multi-user.target
sudo nano d-web.service
[Unit]
Description=diaspora\* social network (unicorn)
PartOf=diaspora.target
StopWhenUnneeded=true
[Service]
User=diaspora
WorkingDirectory=/home/diaspora/diaspora
PIDFile=/home/diaspora/diaspora/tmp/pids/web.pid
Environment=RAILS_ENV=production
ExecStart=/bin/bash -lc "bin/bundle exec unicorn -c config/unicorn.rb -E production"
ExecReload=/bin/kill -USR2 $MAINPID
Restart=always
[Install]
WantedBy=diaspora.target
sudo nano d-side.service
[Unit]
Description=diaspora\* social network (sidekiq)
PartOf=diaspora.target
StopWhenUnneeded=true
[Service]
User=diaspora
WorkingDirectory=/home/diaspora/diaspora
PIDFile=/home/diaspora/diaspora/tmp/pids/sidekiq1.pid
Environment=RAILS_ENV=production
ExecStart=/bin/bash -lc "bin/bundle exec sidekiq"
Restart=always
[Install]
WantedBy=diaspora.target
sudo systemctl daemon-reload
sudo systemctl diaspora.target d-web.service d-side.service
sudo systemctl start diaspora.target
sudo systemctl status d-web
and sudo systemctl status d-side
diaspora@computer:/etc/systemd/system$ sudo systemctl status d-web
● d-web.service - diaspora\* social network (unicorn)
Loaded: loaded (/etc/systemd/system/d-web.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2021-01-21 11:22:17 CST; 10s ago
Main PID: 23443 (ruby)
Tasks: 9 (limit: 4915)
CGroup: /system.slice/d-web.service
├─23443 unicorn master -c config/unicorn.rb -E production
├─23806 unicorn worker[0] -c config/unicorn.rb -E production
├─23808 unicorn worker[1] -c config/unicorn.rb -E production
└─23810 unicorn worker[2] -c config/unicorn.rb -E production
Jan 21 11:22:17 computer systemd[1]: Started diaspora\* social network (unicorn).
Jan 21 11:22:18 computer bash[23443]: I, [2021-01-21T11:22:18.341946 #23443] INFO -- : Refreshing Gem list
Jan 21 11:22:20 computer bash[23443]: Rack::SSL is enabled
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.655211 #23443] INFO -- : unlinking existing socket=/home/diaspora/diaspora/tmp/diaspora.sock
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.655347 #23443] INFO -- : listening on addr=/home/diaspora/diaspora/tmp/diaspora.sock fd=10
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.663995 #23806] INFO -- : worker=0 ready
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.665690 #23443] INFO -- : master process ready
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.666855 #23808] INFO -- : worker=1 ready
Jan 21 11:22:22 computer bash[23443]: I, [2021-01-21T11:22:22.670572 #23810] INFO -- : worker=2 ready
diaspora@computer:/etc/systemd/system$ sudo systemctl status d-side
● d-side.service - diaspora\* social network (sidekiq)
Loaded: loaded (/etc/systemd/system/d-side.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2021-01-21 11:22:17 CST; 32s ago
Main PID: 23444 (ruby)
Tasks: 12 (limit: 4915)
CGroup: /system.slice/d-side.service
└─23444 sidekiq 5.2.8 diaspora [0 of 5 busy]
Jan 21 11:22:17 computer systemd[1]: Started diaspora\* social network (sidekiq).
Jan 21 11:22:20 computer bash[23444]: Rack::SSL is enabled
Content warning: Und wieder ein #Zlax Profil zum Blocken und löschen: * florida_ted@pod.automat.click Wo findet man eigentlich die Kontaktadresse des Pod-Admins bei #Diaspora ? #Trollwiese #Deppenparade