Ubuntu

Linux - Server - SSL in Apache

In diesem Tutorial möchte ich erklären, wie man sich ein eigenes SSL- Zertifikat generiert und dieses anschließend in den Apache - Webserver einbaut. Zuerst aktivieren wir einmal SSL und restarten Apache. Dies wird mit folgenden Commands erledigt:

sudo a2enmod ssl
sudo service apache2 restart

Anschließend erstellen wir in unserem Apache - Verzeichnis einen neuen Ordner, in dem wir anschließend die SSL- Zertifikate ablegen.

sudo mkdir /etc/apache2/ssl

How to create a TeamSpeak³ Autostart Skript on a Linux System

After we've created our TeamSpeak³ Server in this Tutorial , we perhaps want to let that server auto- start on system bootup. To do so, we first create a file namend "teamspeak" in the directory /etc/init.d

You can do this with the following command:

touch /etc/init.d/teamspeak

After that, we make the new- created file executeable. We do this with:

Subscribe to RSS - Ubuntu