thx, for the quick response.
Yea i use ingress as an entry point and ingress handels the encryption. my docker container runs on port 80 thats why ideaSpace uses http.
my ingress conf
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: kubernetes-ingress
annotations:
kubernetes.io/ingress.class: nginx
ingress.appscode.com/hsts: "true"
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
tls:
- hosts:
- mydomain.tld
secretName: letsencrypt-prod
rules:
- host: mydomain.tld
http:
paths:
- backend:
serviceName: idea-space-vr
servicePort: 80
To set the hostename like wordpress sounds promesing but i am not familiar with php or wordpress...
is the hostname already set in asset("...") or would something like this work?
{{ hostname() + asset('public/font-awesome/css/font-awesome.min.css') }}