microblog.pub/docs/install.md

263 lines
7.5 KiB
Markdown
Raw Permalink Normal View History

2022-07-05 21:35:39 +02:00
# Installing
[TOC]
## Docker edition
2022-07-28 20:38:54 +02:00
Assuming Docker and [Docker Compose](https://docs.docker.com/compose/install/) are already installed.
2022-07-30 09:31:04 +02:00
For now, there's no image published on Docker Hub, this means you will have to build the image locally.
2022-07-28 20:38:54 +02:00
2022-07-30 09:31:04 +02:00
Clone the repository, replace `you-domain.tld` by your own domain.
Note that if you want to serve static assets via your reverse proxy (like nginx), clone it in a place
where it is accessible by your reverse proxy user.
2022-07-28 20:38:54 +02:00
```bash
git clone https://git.sr.ht/~tsileo/microblog.pub your-domain.tld
```
2022-07-30 09:31:04 +02:00
Build the Docker image locally.
2022-07-28 20:38:54 +02:00
```bash
make build
```
Run the configuration wizard.
```bash
make config
```
2022-07-30 09:31:04 +02:00
Update `data/profile.toml` and add this line in order to process headers from the reverse proxy:
2022-07-30 08:52:04 +02:00
```toml
trusted_hosts = ["*"]
```
2022-07-28 20:38:54 +02:00
Start the app with Docker Compose, it will listen on port 8000 by default.
2022-07-30 09:31:04 +02:00
The port can be tweaked in the `docker-compose.yml` file.
2022-07-28 20:38:54 +02:00
```bash
docker compose up -d
```
Setup a reverse proxy (see the [Reverse Proxy section](/installing.html#reverse-proxy)).
2022-07-05 21:35:39 +02:00
2022-07-30 09:31:04 +02:00
### Updating
To update microblogpub, pull the latest changes, rebuild the Docker image and restart the process with `docker compose`.
```bash
git pull
make build
docker compose stop
docker compose up -d
```
As you probably already know, Docker can (and will) eat a lot of disk space, when updating you should [prune old images](https://docs.docker.com/config/pruning/#prune-images) from time to time:
```bash
docker image prune -a --filter "until=24h"
```
2022-07-05 09:15:45 +02:00
## Python developer edition
2022-07-05 21:35:39 +02:00
Assuming you have a working **Python 3.10+** environment.
2022-07-05 09:15:45 +02:00
Setup [Poetry](https://python-poetry.org/docs/master/#installing-with-the-official-installer).
```bash
curl -sSL https://install.python-poetry.org | python3 -
```
Clone the repository.
```bash
git clone https://git.sr.ht/~tsileo/microblog.pub testing.microblog.pub
```
Install deps.
```bash
poetry install
```
Setup config.
```bash
poetry run inv configuration-wizard
```
2022-10-18 19:26:04 +02:00
Setup the database.
```bash
poetry run inv migrate-db
```
2022-07-05 09:15:45 +02:00
Grab your virtualenv path.
```bash
poetry env info
```
Run the two processes with supervisord.
```bash
VENV_DIR=/home/ubuntu/.cache/pypoetry/virtualenvs/microblogpub-chx-y1oE-py3.10 poetry run supervisord -c misc/supervisord.conf -n
```
2022-07-28 20:38:54 +02:00
Setup a reverse proxy (see the next section).
2022-07-30 09:31:04 +02:00
### Updating
2022-08-30 05:30:25 +02:00
To update microblogpub locally, pull the remote changes and run the `update` task to regenerate the CSS and run any DB migrations.
2022-07-30 09:31:04 +02:00
```bash
git pull
poetry run inv update
```
2022-07-28 20:38:54 +02:00
## Reverse proxy
2022-07-30 09:31:04 +02:00
You will also want to setup a reverse proxy like NGINX, see [uvicorn documentation](https://www.uvicorn.org/deployment/#running-behind-nginx):
If you don't have a reverse proxy setup yet, [NGINX + certbot](https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/) is recommended.
2022-07-05 09:15:45 +02:00
```nginx
server {
client_max_body_size 4G;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_redirect off;
proxy_buffering off;
proxy_pass http://localhost:8000;
}
# [...]
}
2022-08-30 05:30:25 +02:00
# This should be outside the `server` block
2022-08-29 19:28:54 +02:00
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
2022-07-05 09:15:45 +02:00
```
2022-07-30 09:31:04 +02:00
Optionally, you can serve static files using NGINX directly, with an additional `location` block.
This will require the NGINX user to have access to the `static/` directory.
```nginx
server {
# [...]
location / {
# [...]
}
location /static {
# path for static files
rewrite ^/static/(.*) /$1 break;
root /path/to/your-domain.tld/app/static/;
2022-08-26 20:25:55 +02:00
expires 1y;
2022-07-30 09:31:04 +02:00
}
# [...]
}
```
2022-08-24 07:52:46 +02:00
2022-08-26 20:18:59 +02:00
### NGINX config tips
Enable HTTP2 (which is disabled by default):
```nginx
server {
# [...]
listen [::]:443 ssl http2;
}
```
Tweak `/etc/nginx/nginx.conf` and add gzip compression for ActivityPub responses:
```nginx
http {
# [...]
gzip_types text/plain text/css application/json application/javascript application/activity+json application/octet-stream;
}
```
2022-12-26 10:48:28 +01:00
## (Advanced) Running on a subdomain
It is possible to run microblogpub on a subdomain (`sub.domain.tld`) while being reachable from the root root domain (`domain.tld`) using the `name@domain.tld` handle.
This requires forwarding/proxying requests from the root domain to the subdomain, for example using NGINX:
```nginx
location /.well-known/webfinger {
add_header Access-Control-Allow-Origin '*';
return 301 https://sub.domain.tld$request_uri;
}
```
And updating `data/profile.toml` to specify the root domain as the webfinger domain:
```toml
webfinger_domain = "domain.tld"
```
Once configured correctly, people will be able to follow you using `name@domain.tld`, while using `sub.domain.tld` for the web interface.
2022-11-28 00:17:13 +01:00
## (Advanced) Running from subpath
It is possible to configure microblogpub to run from subpath.
To achieve this, do the following configuration _between_ config and start steps.
i.e. _after_ you run `make config` or `poetry run inv configuration-wizard`,
but _before_ you run `docker compose up` or `poetry run supervisord`.
Changing this settings on an instance which has some posts or was seen by other instances will likely break links to these posts or federation (i.e. links to your instance, posts and profile from other instances).
The following steps will explain how to configure instance to be available at `https://example.com/subdir`.
Change them to your actual domain and subdir.
* Edit `data/profile.toml` file, add this line:
id = "https://example.com/subdir"
* Edit `misc/*-supervisord.conf` file which is relevant to you (it depends on how you start microblogpub - if in doubt, do the same change in all of them) - in `[program:uvicorn]` section, in the line which starts with `command`, add this argument at the very end: ` --root-path /subdir`
Above two steps are enough to configure microblogpub.
Next, you also need to configure reverse proxy.
It might slightly differ if you plan to have other services running on the same domain, but for [NGINX config shown above](#reverse-proxy), the following changes are enough:
* Add subdir to location, so location block starts like this:
location /subdir {
* Add `/` at the end of `proxy_pass` directive, like this:
proxy_pass http://localhost:8000/;
These two changes will instruct NGINX that requests sent to `https://example.com/subdir/...` should be forwarded to `http://localhost:8000/...`.
* Inside `server` block, add redirects for well-known URLs (add these lines after `client_max_body_size`, remember to replace `subdir` with your actual subdir!):
location /.well-known/webfinger { return 301 /subdir$request_uri; }
location /.well-known/nodeinfo { return 301 /subdir$request_uri; }
location /.well-known/oauth-authorization-server { return 301 /subdir$request_uri; }
* Optionally, [check robots.txt from a running microblogpub instance](https://microblog.pub/robots.txt) and integrate it into robots.txt file in the root of your server - remember to prepend `subdir` to URLs, so for example `Disallow: /admin` becomes `Disallow: /subdir/admin`.
2022-08-24 07:52:46 +02:00
## YunoHost edition
2022-11-19 08:38:51 +01:00
[YunoHost](https://yunohost.org/) support is available (although it is not an official package for now): <https://git.sr.ht/~tsileo/microblog.pub_ynh>.
## Available tutorial/guides
- [Opalstack](https://community.opalstack.com/d/1055-howto-install-and-run-microblogpub-on-opalstack), thanks to [@defulmere@mastodon.social](https://mastodon.online/@defulmere).