docs: aligner la doc et la config sur memento-note.com
Some checks failed
CI / Lint, Unit Tests & Build (push) Failing after 1m20s
CI / Deploy production (on server) (push) Has been skipped

Remplace les références obsolètes note.parsanet.org / notes.parsanet.org dans les guides de déploiement et l'exemple Docker.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Antigravity
2026-06-28 08:30:51 +00:00
parent b3fb46fc52
commit 1b61c2c54e
4 changed files with 10 additions and 10 deletions

View File

@@ -15,7 +15,7 @@
```
Internet/LAN
|
[Nginx] ── port 80/443 ── notes.parsanet.org
[Nginx] ── port 80/443 ── memento-note.com
|
├── / ──► [memento-web] ── port 3000 ── Next.js App
|
@@ -68,7 +68,7 @@ bash scripts/deploy-docker.sh --full
Le script demande interactivement :
- **ADMIN_EMAIL** (obligatoire) - le premier utilisateur inscrit avec cet email obtient le role ADMIN
- URL (mettre `http://192.168.1.190` ou `http://notes.parsanet.org`)
- URL (mettre `http://192.168.1.190` ou `https://memento-note.com`)
- Provider AI + cle API
- MCP server, email, recherche web (optionnels)
@@ -233,7 +233,7 @@ apt install -y nginx
cat > /etc/nginx/sites-available/memento << 'EOF'
server {
listen 80;
server_name notes.parsanet.org 192.168.1.190;
server_name memento-note.com 192.168.1.190;
# Next.js app
location / {
@@ -274,12 +274,12 @@ nginx -t && systemctl reload nginx
```bash
apt install -y certbot python3-certbot-nginx
certbot --nginx -d notes.parsanet.org
certbot --nginx -d memento-note.com
# Puis mettre a jour NEXTAUTH_URL :
cd /opt/memento
nano .env.docker
# Changer : NEXTAUTH_URL="https://notes.parsanet.org"
# Changer : NEXTAUTH_URL="https://memento-note.com"
docker compose restart memento-note
```