init: basic k8s deployment on DO

This commit is contained in:
2024-01-09 17:39:03 +01:00
commit b826035b3a
15 changed files with 362 additions and 0 deletions
@@ -0,0 +1,14 @@
server {
listen 80;
server_name 1password-connect.dev.kemkas.hu;
location / {
proxy_pass_request_headers on;
proxy_pass http://localhost:8080;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}