Navigation

    IdeaSpaceVR Forum

    IdeaSpaceVR Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. leo
    L
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    leo

    @leo

    0
    Reputation
    3
    Posts
    38
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    leo Follow

    Posts made by leo

    • RE: Mixed Content when using kubernetes + ingress

      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') }}
      
      posted in IdeaSpaceVR Help
      L
      leo
    • Mixed Content when using kubernetes + ingress

      Hi,
      i am using kubernetes with an nginx ingress controller to host IdeaSpaceVR.
      The problem is the resources/assets are like this:

      <link href="http://myserver.tld/public/font-awesome/css/font-awesome.min.css" rel='stylesheet'>
      

      the result is a mixed content warning because the "main" site is served via https.
      is there a config file to change them to https? like so:

      <link href="https://myserver.tld/public/font-awesome/css/font-awesome.min.css" rel='stylesheet'>
      

      then everything shoud work.

      Greetings, Leo

      posted in IdeaSpaceVR Help
      L
      leo