update readme
* update compatibility list * fix "markdown"
This commit is contained in:
parent
4b7fa7196f
commit
60e9c8554c
2 changed files with 21 additions and 13 deletions
13
README.md
13
README.md
|
@ -19,10 +19,13 @@ The plugin implements the ActivityPub protocol for your blog. Your readers will
|
||||||
|
|
||||||
The plugin works with the following federated platforms:
|
The plugin works with the following federated platforms:
|
||||||
|
|
||||||
* [mastodon](https://joinmastodon.org/)
|
* [Mastodon](https://joinmastodon.org/)
|
||||||
* [pleroma](https://pleroma.social/)
|
* [Pleroma](https://pleroma.social/)
|
||||||
* [friendica](https://friendi.ca/)
|
* [Friendica](https://friendi.ca/)
|
||||||
* [hubzilla](https://hubzilla.org/)
|
* [HubZilla](https://hubzilla.org/)
|
||||||
|
* [Pixelfed](https://pixelfed.org/)
|
||||||
|
* [SocialHome](https://socialhome.network/)
|
||||||
|
* [Misskey](https://join.misskey.page/)
|
||||||
|
|
||||||
## Frequently Asked Questions ##
|
## Frequently Asked Questions ##
|
||||||
|
|
||||||
|
@ -60,7 +63,7 @@ To implement:
|
||||||
|
|
||||||
### What if you are running your blog in a subdirectory? ###
|
### What if you are running your blog in a subdirectory? ###
|
||||||
|
|
||||||
In order for WebFinger to work, it must be mapped to the root directory of the URL on which your blog resides.
|
In order for webfinger to work, it must be mapped to the root directory of the URL on which your blog resides.
|
||||||
|
|
||||||
**Apache**
|
**Apache**
|
||||||
|
|
||||||
|
|
19
readme.txt
19
readme.txt
|
@ -19,10 +19,13 @@ The plugin implements the ActivityPub protocol for your blog. Your readers will
|
||||||
|
|
||||||
The plugin works with the following federated platforms:
|
The plugin works with the following federated platforms:
|
||||||
|
|
||||||
* [mastodon](https://joinmastodon.org/)
|
* [Mastodon](https://joinmastodon.org/)
|
||||||
* [pleroma](https://pleroma.social/)
|
* [Pleroma](https://pleroma.social/)
|
||||||
* [friendica](https://friendi.ca/)
|
* [Friendica](https://friendi.ca/)
|
||||||
* [hubzilla](https://hubzilla.org/)
|
* [HubZilla](https://hubzilla.org/)
|
||||||
|
* [Pixelfed](https://pixelfed.org/)
|
||||||
|
* [SocialHome](https://socialhome.network/)
|
||||||
|
* [Misskey](https://join.misskey.page/)
|
||||||
|
|
||||||
== Frequently Asked Questions ==
|
== Frequently Asked Questions ==
|
||||||
|
|
||||||
|
@ -65,17 +68,19 @@ In order for webfinger to work, it must be mapped to the root directory of the U
|
||||||
**Apache**
|
**Apache**
|
||||||
|
|
||||||
Add the following to the .htaccess file in the root directory:
|
Add the following to the .htaccess file in the root directory:
|
||||||
`RedirectMatch "^\/\.well-known(.*)$" "\/blog\/\.well-known$1"`
|
|
||||||
|
RedirectMatch "^\/\.well-known(.*)$" "\/blog\/\.well-known$1"
|
||||||
|
|
||||||
Where 'blog' is the path to the subdirectory at which your blog resides.
|
Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
**Nginx**
|
**Nginx**
|
||||||
|
|
||||||
Add the following to the site.conf in sites-available:
|
Add the following to the site.conf in sites-available:
|
||||||
|
|
||||||
`location ~* /.well-known {
|
location ~* /.well-known {
|
||||||
allow all;
|
allow all;
|
||||||
try_files $uri $uri/ /blog/?$args;
|
try_files $uri $uri/ /blog/?$args;
|
||||||
}`
|
}
|
||||||
|
|
||||||
Where 'blog' is the path to the subdirectory at which your blog resides.
|
Where 'blog' is the path to the subdirectory at which your blog resides.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue