So installierst du Fork CMS unter Ubuntu 20.04

Fork ist ein einfaches, leichtgewichtiges und leicht zu bedienendes Content Management System. Es basiert auf Symfony und bietet eine benutzerfreundliche Weboberfläche, mit der du alle deine Inhalte über den Webbrowser verwalten kannst. Außerdem bietet es leistungsstarke Apps und Themes, mit denen du deine Website noch besser anpassen kannst. Es hat einen funktionalen Marktplatz mit vielen Apps und bietet außerdem leistungsstarke Tools für Anfänger und Profis.

In diesem Beitrag erklären wir dir, wie du Fork CMS mit Apache und Let’s Encrypt SSL auf Ubuntu 20.04 installierst.

Voraussetzungen

  • Ein Server, auf dem Ubuntu 20.04 läuft.
  • Ein gültiger Domainname, der auf die IP deines Servers zeigt.
  • Ein Root-Passwort ist auf dem Server konfiguriert.

LAMP-Stack installieren

Zuerst musst du den Apache Webserver, den MariaDB Datenbankserver, PHP und andere benötigte PHP-Erweiterungen auf deinem Server installieren. Du kannst alle Pakete mit folgendem Befehl installieren:

apt-get install apache2 mariadb-server php libapache2-mod-php php-json php-xml php-cli php-zip php-common php-sqlite3 php-curl php-intl php-mbstring php-xmlrpc php-mysql php-gd wget unzip -y

Nachdem du alle Pakete installiert hast, bearbeite die PHP-Konfigurationsdatei:

nano /etc/php/7.4/apache2/php.ini

Ändere die folgenden Einstellungen nach deinen Bedürfnissen:

memory_limit = 256M
upload_max_filesize = 100M
max_execution_time = 360
file_uploads = On
date.timezone = Asia/Kolkata

Speichere und schließe die Datei und starte dann den Apache-Dienst neu, um die Konfigurationsänderungen zu übernehmen:

systemctl restart apache2

MariaDB-Datenbank konfigurieren

Zuerst musst du die MariaDB sichern und das MariaDB Root-Passwort festlegen. Du kannst das folgende Skript ausführen, um die MariaDB-Installation zu sichern:

mysql_secure_installation

Dieses Skript setzt ein Root-Passwort, entfernt anonyme Benutzer, verbietet den Root-Login aus der Ferne und entfernt die Testdatenbank wie unten gezeigt:

Set root password? [Y/n] n
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y
Once MariaDB is secured, log in to MariaDB shell:

Als Nächstes meldest du dich mit folgendem Befehl in der MariaDB-Shell an:

mysql -u root -p

Gib dein Root-Passwort ein und erstelle eine Datenbank und einen Benutzer für Fork CMS:

MariaDB [(none)]> CREATE DATABASE forkcmsdb;
MariaDB [(none)]> CREATE USER 'forkcms'@'localhost' IDENTIFIED BY 'password';

Als Nächstes erteilst du der Fork CMS-Datenbank mit folgendem Befehl Privilegien:

MariaDB [(none)]> GRANT ALL PRIVILEGES ON forkcmsdb.* TO 'forkcms'@'localhost';

Als Nächstes führst du den Befehl FLUSH PRIVILEGES aus, damit MariaDB die Privilegien-Tabelle neu lädt:

MariaDB [(none)]> FLUSH PRIVILEGES;

Zum Schluss beendest du die MariaDB-Shell mit dem folgenden Befehl:

MariaDB [(none)]> EXIT;

Fork CMS installieren

Zuerst musst du den Composer auf deinem System installieren. Du kannst ihn mit dem folgenden Befehl installieren:

curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

Du erhältst die folgende Ausgabe:

All settings correct for using Composer
Downloading...

Composer (version 2.3.3) successfully installed to: /usr/local/bin/composer
Use it: php /usr/local/bin/composer

Als Nächstes navigierst du zum Apache Web Root Verzeichnis und lädst das Fork CMS mit dem Composer herunter:

cd /var/www/html/
composer create-project forkcms/forkcms

Sobald der Download abgeschlossen ist, gibst du dem FOrk CMS-Verzeichnis die richtigen Berechtigungen und Eigentümer:

chown -R www-data:www-data /var/www/html/forkcms
chmod -R 775 /var/www/html/forkcms

Sobald du damit fertig bist, kannst du mit dem nächsten Schritt fortfahren.

Apache für Fork CMS konfigurieren

Als Nächstes musst du eine Konfigurationsdatei für einen virtuellen Apache-Host erstellen, um Fork CMS über das Internet bereitzustellen. Du kannst sie mit dem folgenden Befehl erstellen:

nano /etc/apache2/sites-available/forkcms.conf

Füge die folgenden Zeilen ein:

<VirtualHost *:80>
     ServerAdmin admin@example.com
     DocumentRoot /var/www/html/forkcms
     ServerName forkcms.example.com
     ServerAlias www.example.com

     <Directory /var/www/html/forkcms/>
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     </Directory>

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

Speichere und schließe die Datei, aktiviere das Fork CMS und aktiviere das Apache Rewrite-Modul mit folgendem Befehl:

a2ensite forkcms.conf
a2enmod rewrite

Starte anschließend den Apache-Dienst neu, um die Änderungen zu übernehmen:

systemctl restart apache2

Du kannst den Status des Apache-Dienstes auch mit folgendem Befehl überprüfen:

systemctl status apache2

Du erhältst die folgende Ausgabe:

? apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: active (running) since Sat 2022-04-02 08:04:06 UTC; 13s ago
       Docs: https://httpd.apache.org/docs/2.4/
    Process: 15441 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
   Main PID: 15460 (apache2)
      Tasks: 6 (limit: 2348)
     Memory: 13.4M
     CGroup: /system.slice/apache2.service
             ??15460 /usr/sbin/apache2 -k start
             ??15461 /usr/sbin/apache2 -k start
             ??15462 /usr/sbin/apache2 -k start
             ??15463 /usr/sbin/apache2 -k start
             ??15464 /usr/sbin/apache2 -k start
             ??15465 /usr/sbin/apache2 -k start

Apr 02 08:04:06 ubuntu2004 systemd[1]: Starting The Apache HTTP Server...

Wenn du damit fertig bist, kannst du mit dem nächsten Schritt fortfahren.

Zugriff auf das Fork CMS Web Interface

Öffne nun deinen Webbrowser und gib die URL http://forkcms.example.com ein. Du wirst auf die folgende Seite weitergeleitet:

Hier wählst du die gewünschte Sprache aus und klickst dann auf die Schaltfläche Weiter. Du solltest die folgende Seite sehen:

Wähle hier das Modul aus, das du installieren möchtest, und klicke dann auf die Schaltfläche Weiter. Du solltest die folgende Seite sehen:

Hier gibst du die Daten deiner Datenbank an und klickst auf die Schaltfläche Weiter. Du solltest die folgende Seite sehen:

Hier gibst du deine Admin-E-Mail-Adresse, deinen Benutzernamen und dein Passwort ein und klickst dann auf die Schaltfläche Installation beenden. Du solltest die folgende Seite sehen:

Jetzt klickst du auf die Schaltfläche Log In To Fork CMS. Auf der folgenden Seite solltest du den Anmeldebildschirm für Fork CMS sehen:

Gib deinen Benutzernamen und dein Passwort ein und klicke dann auf die Schaltfläche Anmelden. Du wirst zum Fork CMS Dashboard weitergeleitet, wie auf dem folgenden Bild zu sehen ist:

Fork CMS mit Let’s Encrypt SSL sichern

Als Nächstes empfiehlt es sich, deine Website mit Let’s Encrypt SSL zu sichern. Installiere zunächst den Certbot-Client mit dem folgenden Befehl:

apt-get install python3-certbot-apache -y

Nach der Installation führst du den folgenden Befehl aus, um deine Website mit Let’s Encrypt SSL zu sichern:

certbot --apache -d forkcms.example.com

Du wirst aufgefordert, deine E-Mail-Adresse anzugeben und die Nutzungsbedingungen zu akzeptieren (siehe unten):

Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator standalone, Installer None
Enter email address (used for urgent renewal and security notices) (Enter 'c' to
cancel): hitjethva1981@gmail.com

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must
agree in order to register with the ACME server at
https://acme-v02.api.letsencrypt.org/directory
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(A)gree/(C)ancel: A

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing to share your email address with the Electronic Frontier
Foundation, a founding partner of the Let's Encrypt project and the non-profit
organization that develops Certbot? We'd like to send you email about our work
encrypting the web, EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: Y
Plugins selected: Authenticator apache, Installer apache
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for forkcms.example.com
Enabled Apache rewrite module
Waiting for verification...
Cleaning up challenges
Created an SSL vhost at /etc/apache2/sites-available/forkcms-le-ssl.conf
Enabled Apache socache_shmcb module
Enabled Apache ssl module
Deploying Certificate to VirtualHost /etc/apache2/sites-available/forkcms-le-ssl.conf
Enabling available site: /etc/apache2/sites-available/forkcms-le-ssl.conf

Als Nächstes wählst du aus, ob der HTTP-Verkehr auf HTTPS umgeleitet werden soll oder nicht (siehe unten):

Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: No redirect - Make no further changes to the webserver configuration.
2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for
new sites, or if you're confident your site works on HTTPS. You can undo this
change by editing your web server's configuration.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2

Gib 2 ein und drücke die Eingabetaste, um Let’s Encrypt SSL für deine Website zu installieren:

Enabled Apache rewrite module
Redirecting vhost in /etc/apache2/sites-enabled/forkcms.conf to ssl vhost in /etc/apache2/sites-available/forkcms-le-ssl.conf

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Congratulations! You have successfully enabled https://forkcms.example.com

You should test your configuration at:
https://www.ssllabs.com/ssltest/analyze.html?d=forkcms.example.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/forkcms.example.com/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/forkcms.example.com/privkey.pem
   Your cert will expire on 2022-07-23. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot again
   with the "certonly" option. To non-interactively renew *all* of
   your certificates, run "certbot renew"
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

Fazit

Herzlichen Glückwunsch! Du hast Fork CMS mit Apache und Let’s Encrypt SSL erfolgreich auf dem Ubuntu 20.04 Server installiert. Jetzt kannst du das Fork CMS erkunden und mit der Erstellung deiner eigenen Website über die intuitive Weboberfläche von Fork CMS beginnen.

Das könnte dich auch interessieren …