Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungI built an agent that refuses to answer Next.js from stale docs(24.09.2026 um 03:17 Uhr)
Sichere ProgrammierungI vibe-coded a Next.js knowledge base that argues with itself(24.09.2026 um 03:17 Uhr)
Linux Tipps & HardeningUbuntu speeds up kernel security updates because of AI(24.09.2026 um 03:01 Uhr)
IT Security NachrichtenGoogle's PageBreak Project – Real-World Findings(24.09.2026 um 02:00 Uhr)
IT Security NachrichtenAI spend will jump 49.5% in 2026, says Gartner(24.09.2026 um 03:26 Uhr)
IT NachrichtenAI spend will jump 49.5% in 2026, says Gartner(24.09.2026 um 03:26 Uhr)
Sichere ProgrammierungI built an agent that refuses to answer Next.js from stale docs(24.09.2026 um 03:17 Uhr)
Sichere ProgrammierungI vibe-coded a Next.js knowledge base that argues with itself(24.09.2026 um 03:17 Uhr)
Linux Tipps & HardeningUbuntu speeds up kernel security updates because of AI(24.09.2026 um 03:01 Uhr)
IT Security NachrichtenGoogle's PageBreak Project – Real-World Findings(24.09.2026 um 02:00 Uhr)
IT Security NachrichtenAI spend will jump 49.5% in 2026, says Gartner(24.09.2026 um 03:26 Uhr)
IT NachrichtenAI spend will jump 49.5% in 2026, says Gartner(24.09.2026 um 03:26 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

🚀 Deploying My First Portfolio on Killercoda Using Nginx — A Beginner DevOps Walkthrough

As part of my DevOps learning journey, I was given an assignment to deploy a personal portfolio website on Killercoda using Nginx. This hands-on project taught me how to host a static website on a remote Linux environment, configure a web…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

As part of my DevOps learning journey, I was given an assignment to deploy a personal portfolio website on Killercoda using Nginx. This hands-on project taught me how to host a static website on a remote Linux environment, configure a web server, and use Git for deployment — all essential DevOps skills.



In this article, I’ll walk you through every step I took.






✅ 1. Downloading a Starter Template



I started by downloading a portfolio template from StartBootstrap.

This gave me a clean base to work with.








✅ 2. Extracting the Project & Opening It in VS Code



After downloading, I extracted the ZIP file and opened the project folder in Visual Studio Code.





In VS Code, I customized the template with:




  • My name

  • My bio

  • Updated projects and contacts

  • Adjusted colors and layout














✅ 3. Pushing the Project to GitHub



Once the edits were done, I initialized a Git repository and pushed the project online:



git init

git remote add origin <my-repo-url>

git add .

git commit -m "Initial commit"

git push -u origin main





This step made deployment easier since I could simply clone the repo on the server.






✅ 4. Opening a Killercoda Playground



I visited:



👉 https://killercoda.com/playgrounds/scenario/ubuntu



This opened a live Ubuntu environment where I could run commands and deploy my project.








✅ 5. Installing Nginx



Inside the Killercoda terminal, I installed Nginx:



sudo apt install nginx -y







After installation, I confirmed Nginx was running:



which nginx

nginx -v

sudo systemctl status nginx







Everything was working perfectly.






✅ 6. Opening the Web Traffic/Port



From the Killercoda menu, I opened the traffic/port view.



Then I ran port 80 to see the default Nginx welcome page.



This confirmed that:




  • Nginx is running

  • Port 80 is open

  • The server is serving a default webpage









✅ 7. Navigating to the Web Server Directory



By default, Nginx serves files from:



/var/www/html



I checked the folder:



ls /var/www/html



I found a file:




index.nginx-debian.html






This is the default Nginx landing page.






✅ 8. Removing the Default Nginx File



To prepare the directory for my project, I removed the default index file:



sudo rm /var/www/html/index.nginx-debian.html








✅ 9. Cloning My GitHub Project



Next, I switched into the web root:



cd /var/www/html



Then I cloned my portfolio repo:



sudo git clone <my-github-repo-url> .





After cloning, I verified the files:



ls /var/www/html





All my project files were successfully copied into the server directory.






✅ 10. Viewing the Live Website



Killercoda provided a temporary public URL:



👉 https://6c7ccb24b1e1-10-244-14-10-80.spch.r.killercoda.com



After refreshing the page, my portfolio loaded perfectly — fully deployed and running on Nginx!





🎉 Final Result



I successfully:



✔ Customized a Bootstrap website

✔ Pushed it to GitHub

✔ Installed and configured Nginx

✔ Removed the default server files

✔ Deployed my project using git clone

✔ Hosted a live site on Killercoda



This project helped me understand:




  • Web servers

  • Linux directory structure

  • Git-based deployment

  • Static website hosting

  • Basic DevOps workflow



🧠 What I Learned




  • How Nginx serves files from /var/www/html

  • How to replace a default server page with your own

  • How to deploy directly from GitHub

  • How Killercoda can be used as a free cloud environment

  • Confidence in using Linux commands



📌 Conclusion



This was a simple but powerful DevOps exercise. I deployed a real website on a live Linux server using Nginx — without needing AWS, Azure, or a VPS.



If you’re also learning DevOps, I highly recommend trying this workflow!

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - 🚀 Deploying My First Portfolio on Killercoda Using Nginx — A Beginner DevOps Walkthrough
id: cfa251f4-805e-4876-ba9e-76a248b60e86
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "🚀 Deploying My First Portfolio" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich 🚀 Deploying My First Portfolio on Killer.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten 🚀 Deploying My First Portfolio on Killercoda Using Nginx — A Beginner DevOps Walkthrough

Thematisch verwandte Begriffe: Deploying, First, Portfolio, Killercoda · 6 Treffer

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96676 | A vulnerability was identified in Fast FAC1900R 20190827_2.0.2. The impa…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick