50% rabat alle planer, begrænset periode. Fra kun $2.48/mo
Etherpad

Etherpad

Etherpad er en realtids samarbejdsdrevet dokumenteditor. Et Gooogle Docs-alternativ til ren tekst med versionshistorik og indbygget chat,

WordPress er verdens mest udbredte CMS. Driver 43% af nettet (over 513 millioner sider) med et stort økosystem af plugins og temaer. Brugt af TechCrunch, The New Yorker, BBC America og Sony Music. Gratis GPL-licens og standardvalget for CMS siden 2003.

Latest

Seneste

Ubuntu Server 24.04 LTS

Min. RAM

2 GB

2 GB

IPV4

Få adgang til Etherpad

  • Brugergrænseflade: https://<SERVER_IP>
  • Administratorgrænseflade: https://<SERVER_IP>/admin
  • Administratoroplysninger: Brugernavn admin, adgangskode gemt i .env as ADMIN_PASSWORD

Tilføj brugere via administratorindstillinger

1. Besøg: https://<SERVER_IP>/admin

2. Gå til Indstillinger.

3. En JSON-konfigurationsfil vises.

4. Find stedet users sektion:

  "users": {
    "admin": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "${ADMIN_PASSWORD:null}",
      "is_admin": true
    },
    "user": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "test",
      "is_admin": false
    }
  },

5. Tilføj en ny bruger (følg gyldig JSON-syntaks):

  "users": {
    "admin": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "${ADMIN_PASSWORD:null}",
      "is_admin": true
    },
    "user": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "test",
      "is_admin": false
    },
    "newuser": {
      "password": "strongpassword",
      "is_admin": false
    }
  },

6. Klik på Gem indstillinger.

7. Klik på Genstart Etherpad.

Vigtige filer og mapper

  • Applikationsinstallation: /root/etherpad
  • Docker Compose-fil: /root/etherpad/docker-compose.yml
  • Miljøvariabler: /root/etherpad/.env
  • PostgreSQL-databasedata: /var/lib/docker/volumes/etherpad_postgres_data/_data
  • Etherpad-kørselstidsdata: /var/lib/docker/volumes/etherpad_etherpad-var/_data
  • Plugins-mappe: /var/lib/docker/volumes/etherpad_plugins/_data
  • Nginx-konfiguration: /etc/nginx/sites-available/etherpad
  • SSL-certificater: /etc/nginx/ssl/

Servicestyrring

Vis containere:

docker ps

Genstart containere:

docker compose -f /root/etherpad/docker-compose.yml restart

Følg Etherpad-logfiler:

docker compose -f /root/etherpad/docker-compose.yml logs -f

Genstart Nginx:

systemctl restart nginx

Aktivér SSL med et domæne

1. Peg dit domæne på serverens IP-adresse.

2. Rediger Nginx-konfigurationen og erstat begge server_name <IP>; med dit domæne (<your-domain>) for både HTTP- (port 80) og HTTPS-blokkene (port 443):

vim /etc/nginx/sites-available/etherpad

3. Installer Certbot:

apt install -y certbot python3-certbot-nginx

4. Kør følgende kommando for at generere et gyldigt Let's Encrypt-certifikat:

certbot certonly --nginx --non-interactive --agree-tos --email [email protected] -d yourdomain.com

5. Erstat SSL-stierne i Nginx-konfigurationen:

vim /etc/apache2/sites-available/etherpad
# Before:
    # ssl_certificate /etc/nginx/ssl/fullchain.pem;
    # ssl_certificate_key /etc/nginx/ssl/privkey.pem;
# After:
    # ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem;
    # ssl_certificate_key /etc/letsencrypt/live/yourdomain.com/privkey.pem;

6. Genstart Nginx for at anvende ændringerne:

systemctl restart nginx

7. Åbn din browser og gå til: https://yourdomain.com

Noter

  • Etherpad leveres bag en Nginx reverse proxy til SSL-terminering og forbedret sikkerhed.
  • Et selvsigneret certifikat kan udløse browseradvarsler. Dette er forventet, medmindre Let's Encrypt anvendes.
  • Nogle browsere kan vise fejl eller få Etherpad til at fungere forkert.
  • Etherpad er testet og bekræftet til at fungere i Firefox, som anbefales for bedst mulig kompatibilitet.

More in Collaboration Tools

Related apps.

Deploy Etherpad now. From $2.48/mo.