diff --git a/docs/docs/.vitepress/sidebar.ts b/docs/docs/.vitepress/sidebar.ts index 4f66c9f0d7..37ae55edc1 100644 --- a/docs/docs/.vitepress/sidebar.ts +++ b/docs/docs/.vitepress/sidebar.ts @@ -331,7 +331,7 @@ export const sidebar = [ link: "/self-hosting/guides/tailscale", }, { - text: "Running Ente with systemd", + text: "Running Ente using systemd", link: "/self-hosting/guides/systemd", }, ], diff --git a/docs/docs/self-hosting/administration/cli.md b/docs/docs/self-hosting/administration/cli.md index 07240623c3..6b98a91247 100644 --- a/docs/docs/self-hosting/administration/cli.md +++ b/docs/docs/self-hosting/administration/cli.md @@ -22,10 +22,10 @@ endpoint: api: http://localhost:8080 ``` -## Step 2: Whitelist admin user +## Step 2: Whitelist admins -You can whitelist administrator user by following this -[guide](/self-hosting/administration/users#whitelist-admins) +You can whitelist administrator users by following this +[guide](/self-hosting/administration/users#whitelist-admins). ## Step 3: Add an account diff --git a/docs/docs/self-hosting/administration/reverse-proxy.md b/docs/docs/self-hosting/administration/reverse-proxy.md index 52867d814f..1f90bf77de 100644 --- a/docs/docs/self-hosting/administration/reverse-proxy.md +++ b/docs/docs/self-hosting/administration/reverse-proxy.md @@ -25,15 +25,12 @@ although you can use other alternatives such as NGINX, Traefik, etc. sudo apt install caddy ``` - Start the service, enable it to start upon system boot and reload when configuration - has changed. + Start the service and enable it to start upon system boot. ``` shell sudo systemctl start caddy sudo systemctl enable caddy - - sudo systemctl reload caddy ``` ## Step 1: Configure A or AAAA records @@ -54,7 +51,7 @@ After installing Caddy, `Caddyfile` is created at You can edit the minimal configuration provided below for your own needs. -> yourdomain.tld is an example. Replace it with your own domain +> yourdomain.tld is an example. Replace it with your own domain. ```groovy # For Museum @@ -90,7 +87,7 @@ cast.ente.yourdomain.tld { ## Step 3: Reload reverse proxy -Reload Caddy for changes to take effect +Reload Caddy for changes to take effect. ``` shell sudo systemctl caddy reload diff --git a/docs/docs/self-hosting/index.md b/docs/docs/self-hosting/index.md index 31532b8557..1ba4dd6e10 100644 --- a/docs/docs/self-hosting/index.md +++ b/docs/docs/self-hosting/index.md @@ -5,15 +5,12 @@ description: Getting started with self-hosting Ente # Quickstart -If you're looking to spin up Ente on your server for preserving those -sweet memories or using Auth for 2FA codes, you are in the right place! +If you're looking to spin up Ente on your server , you are in the right place! Our entire source code ([including the server](https://ente.io/blog/open-sourcing-our-server/)) is open source. This is the same code we use on production. -For a quick preview of Ente on your server, make sure your system meets the -requirements mentioned below. After trying the preview, you can explore other -ways of self-hosting Ente on your server as described in the documentation. +For a quick preview, make sure your system meets the requirements mentioned below. After trying the preview, you can explore other ways of self-hosting Ente on your server as described in the documentation. ## Requirements diff --git a/docs/docs/self-hosting/installation/config.md b/docs/docs/self-hosting/installation/config.md index bdddbde65a..e00543ce78 100644 --- a/docs/docs/self-hosting/installation/config.md +++ b/docs/docs/self-hosting/installation/config.md @@ -100,8 +100,7 @@ your provider's credentials, and set `are_local_buckets` to `false`. MinIO uses the port `3200` for API Endpoints. Web Console can be accessed at http://localhost:3201 by enabling port `3201` in the Compose file. -If you face any issues related to uploads then checkout [Troubleshooting bucket -CORS] and [Frequently encountered S3 errors]. +If you face any issues related to uploads then check out [CORS](/self-hosting/administration/object-storage#cors-cross-origin-resource-sharing) and [troubleshooting](/self-hosting/troubleshooting/uploads) sections. | Variable | Description | Default | | -------------------------------------- | -------------------------------------------- | ------- | diff --git a/docs/docs/self-hosting/troubleshooting/docker.md b/docs/docs/self-hosting/troubleshooting/docker.md index 8a7c1462e7..39cce15e18 100644 --- a/docs/docs/self-hosting/troubleshooting/docker.md +++ b/docs/docs/self-hosting/troubleshooting/docker.md @@ -45,15 +45,12 @@ minio-provision: entrypoint: | sh -c ' #!/bin/sh - while ! mc alias set h0 http://minio:3200 your_minio_user your_minio_pass do echo "waiting for minio..." sleep 0.5 done - cd /data - mc mb -p b2-eu-cen mc mb -p wasabi-eu-central-2-v3 mc mb -p scw-eu-fr-v3 @@ -162,15 +159,12 @@ Thus the updated `post_start` will look as follows for `minio` service: - command: | sh -c ' #!/bin/sh - while ! mc alias set h0 http://minio:3200 your_minio_user your_minio_pass 2>/dev/null do echo "Waiting for minio..." sleep 0.5 done - cd /data - mc mb -p b2-eu-cen mc mb -p wasabi-eu-central-2-v3 mc mb -p scw-eu-fr-v3