[docs] fix dead links

This commit is contained in:
Keerthana
2025-07-25 19:22:23 +05:30
parent 7c87f27539
commit 2b4ed5b43c
6 changed files with 10 additions and 23 deletions

View File

@@ -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",
},
],

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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 |
| -------------------------------------- | -------------------------------------------- | ------- |

View File

@@ -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