Compare commits
No commits in common. "6e175e0a6059967f11fa526d9944ce44d6926b9b" and "3c71ebe5e22a931485115d4e6e5439eebe31a27d" have entirely different histories.
6e175e0a60
...
3c71ebe5e2
|
@ -10,5 +10,4 @@ RUN hugo mod get -u && \
|
|||
|
||||
FROM nginx:stable-alpine
|
||||
|
||||
COPY --from=build /app/public /usr/share/nginx/html/
|
||||
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY --from=build /app/public /usr/share/nginx/html/
|
|
@ -1,10 +1,6 @@
|
|||
---
|
||||
title: "Building a Docker Container with Gitea Actions on K3s"
|
||||
date: "2023-12-28"
|
||||
tags:
|
||||
- gitea
|
||||
- k3s
|
||||
- cicd
|
||||
---
|
||||
|
||||
Building a Docker image and pushing it to the registry with GitHub Actions is incredibily easy. Since Gitea Actions are designed to be compatible with GitHub Actions, this should be easy, right?
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
---
|
||||
title: "Replicating Gitea Docker SSH Passthrough on K3s"
|
||||
date: "2023-02-12"
|
||||
tags:
|
||||
- gitea
|
||||
- k3s
|
||||
---
|
||||
|
||||
If you are selfhosting Gitea on a single node Kubernetes cluster and want to enable git through SSH while keeping SSH connection to the cluster, this guide is for you.
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
---
|
||||
title: "Building My Resume with GitHub Actions"
|
||||
date: "2023-10-02"
|
||||
tags:
|
||||
- cicd
|
||||
---
|
||||
|
||||
Even if you are not actively looking for a new job, it is a good idea to have an up to date resume. I'm using Overleaf's GitHub integration and GitHub Actions to build PDF from my LaTeX resume and release it on GitHub
|
||||
|
|
17
nginx.conf
17
nginx.conf
|
@ -1,17 +0,0 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name localhost;
|
||||
|
||||
access_log /var/log/nginx/access.log main;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue