commit 08ffea0fb7c55835cd710ec96d62e617efc8bc99 Author: Simon Einzinger Date: Tue Dec 24 09:50:07 2024 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d6668db --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.override.yaml diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..0679b59 --- /dev/null +++ b/Caddyfile @@ -0,0 +1,6 @@ +:80 { + root * /var/www/html + file_server + + try_files {path} /index.html +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a3723cd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM caddy:2.9 AS production-stage + +COPY ./index.html /var/www/html/ +COPY ./me.mp4 /var/www/html/ diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..19b680b --- /dev/null +++ b/compose.yaml @@ -0,0 +1,15 @@ +name: me + +services: + me: + build: + dockerfile: Dockerfile + ports: + - "127.0.0.1:7200:80" + volumes: + - ./Caddyfile:/etc/caddy/Caddyfile:ro + restart: unless-stopped + +networks: + proxy: + external: true diff --git a/index.html b/index.html new file mode 100644 index 0000000..b7514d6 --- /dev/null +++ b/index.html @@ -0,0 +1,180 @@ + + + + + Simon Einzinger + + + +
+

Welcome to Simon Einzinger's Personal Website

+

Your one-stop destination to know all about me!

+
+ + + +
+ +
+
+

About Me

+

+ Hello! I'm Simon Einzinger, a cybersecurity student with a passion + for creating innovative solutions. Having tutored many lectures I + gained lots of valuable experiences. +

+
+ +
+

Projects

+

Here are some of the projects I've worked on recently:

+
    +
  • + ProxyManager - A web application that helps managing reverse + proxies. +
  • +
  • + CryptoKiller - An automated vulnerability detection tool for the + Blockchain using AI. +
  • +
  • + Personal Website - Trying out some web development with this + website. +
  • +
+
+ + + +
+

Contact Me

+

+ Feel free to reach out to me through any of the following platforms: +

+ +
+
+
+ + + + + + diff --git a/me.mp4 b/me.mp4 new file mode 100644 index 0000000..508c2d5 Binary files /dev/null and b/me.mp4 differ