add more confs and stuff

This commit is contained in:
2026-07-16 19:16:40 +02:00
parent 22e08de759
commit d70dd8d601
20 changed files with 831 additions and 6 deletions
+3
View File
@@ -18,3 +18,6 @@
# alias mv='mv -i'
export EDITOR=nvim
export VISUAL=nvim
. "$HOME/.cargo/env"
export PATH="$HOME/.cargo/bin:$PATH"
eval "$(starship init bash)"
+1
View File
@@ -0,0 +1 @@
source "$HOME/.cargo/env.fish"
+1 -4
View File
@@ -4,12 +4,9 @@ end
starship init fish | source
# exports
# exports
#set -gx PATH $HOME/.local/bin $PATH
# exports
set -gx PATH $HOME/.local/bin $PATH
fish_add_path $HOME/.cargo/bin
# disable greet
set --erase fish_greeting
+1
View File
@@ -29,3 +29,4 @@ SETUVAR fish_pager_color_description:B3A06D\x1eyellow\x1e\x2di
SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
SETUVAR fish_pager_color_selected_background:\x2dr
SETUVAR fish_user_paths:/root/\x2ecargo/bin
+42
View File
@@ -0,0 +1,42 @@
vacpro.fyi {
reverse_proxy 10.0.0.2 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
photos.vacpro.fyi {
reverse_proxy 10.0.0.2:80 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
zita.vacpro.fyi {
reverse_proxy 10.0.0.2:80 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
vw.vacpro.fyi {
reverse_proxy 10.0.0.2:80 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
status.vacpro.fyi {
reverse_proxy localhost:3002 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
moxiu.vacpro.fyi {
reverse_proxy 10.0.0.2:80 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
zip.vacpro.fyi {
reverse_proxy 10.0.0.2:80 {
header_up X-Forwarded-Proto https
header_up Host {host}
}
}
+35
View File
@@ -0,0 +1,35 @@
endpoints:
- name: website (moxiu's website)
url: "https://moxiu.vacpro.fyi"
interval: 65s
conditions:
- "[STATUS] == 200"
- "[RESPONSE_TIME] < 10000"
- name: photos
url: "https://photos.vacpro.fyi"
interval: 65s
conditions:
- "[STATUS] == 200"
- "[RESPONSE_TIME] < 10000"
- name: zipline
url: "https://zip.vacpro.fyi"
interval: 65s
conditions:
- "[STATUS] == 200"
- "[RESPONSE_TIME] < 10000"
- name: vw
url: "https://vw.vacpro.fyi"
interval: 65s
conditions:
- "[STATUS] == 200"
- "[RESPONSE_TIME] < 10000"
- name: zitadel
url: "https://zita.vacpro.fyi"
interval: 65s
conditions:
- "[STATUS] == 200"
- "[RESPONSE_TIME] < 10000"
+10
View File
@@ -0,0 +1,10 @@
services:
gatus:
image: twinproduction/gatus:stable
container_name: gatus
volumes:
- ./data:/data
- ./config.yaml:/config/config.yaml:ro
restart: always
ports:
- "3002:8080"