summaryrefslogtreecommitdiff
path: root/data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2023-08-04 08:40:39 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-08-04 08:40:39 +0200
commit3cd561677f39fad3a02820106ba0d340efe6aac1 (patch)
tree3af85cd6a6384d5514f62406f2172ad2b0eb0e0c /data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml
parent4fcd0741940a7f6316e1fb71ede6624c5359c39e (diff)
Rename oolah.tyil.net k3s cluster to tyilnet
This is an actual cluster now, after all, not a single node deployment like the other k3s-master instances, which will most likely all be taken out of order with time.
Diffstat (limited to 'data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml')
-rw-r--r--data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml38
1 files changed, 0 insertions, 38 deletions
diff --git a/data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml b/data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml
deleted file mode 100644
index b78a822..0000000
--- a/data.d/k3s-master/manifests.d/oolah/personal-services/grocy/configmap.yaml
+++ /dev/null
@@ -1,38 +0,0 @@
----
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: grocy
- namespace: personal-services
- labels:
- app.kubernetes.io/created-by: tyil
- app.kubernetes.io/managed-by: manual
- app.kubernetes.io/name: grocy
- app.kubernetes.io/part-of: personal-services
-data:
- # A custom common.conf is required because the name of the backend service is
- # not configurable through conventional means. Instead, I supply my own
- # version with the correct backend name and overwrite the one supplied by the
- # grocy docker container itself.
- common.conf: |
- charset utf-8;
-
- location / {
- try_files $uri /index.php$is_args$query_string;
- }
-
- location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {
- expires 365d;
- }
-
- location ~ \.php$ {
- fastcgi_pass grocy-backend:80;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
-
- location ~ /\.ht {
- deny all;
- }
-...