Docker Setup mit network statt link und nginx - Weiße Seite mixed content

Ich habe die (veralteten =sollen nicht mehr benutzt werden) Links mit einem Netzwerk ersetzt und das Netzwerk nach außen ist “nginx”. Die nginx config ist weiter unten, die Chrome Error Console ganz unten.

Wenn ich auf http-basis ohne nginx zugreife, funktioniert alles auf Port 81.

Wenn ich nginx benutze funktioniert es nicht, wegen mixed content im Pfad /rest, obwohl ich in der docker-compose,yml https angegeben habe.
Ich möchte die Zertifikate idealerweise nur im NGINX Container haben, nicht irgendwo hin kopieren. Was ist hier zutun?

Meine docker-compose.yml:

version: '3.2'

services:
  db:
    build: db
    restart: always
    volumes:
      - ./volumes/db/data:/var/lib/postgresql/data
      - ./volumes/db/log:/var/log/postgresql
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      - METASFRESH_USERNAME=metasfresh
      - METASFRESH_PASSWORD=metasfresh
      - METASFRESH_DBNAME=metasfresh
      - DB_SYSPASS=System
      - POSTGRES_PASSWORD=somepassword
  app:
    build: app
    hostname: app
    # links:
    #   - db:db
    #   - rabbitmq:rabbitmq
    #   - search:search
    networks:
      - nginx
      - default
      # - metasfresh
    # expose:
    #   - 8282
    #   - 61616
    #   - 8788
  # to access the api(swagger) directly 
    #ports:
    # - 8282:8282
    restart: always
    volumes:
      - ./volumes/app/log:/opt/metasfresh/log:rw
      - ./volumes/app/heapdump:/opt/metasfresh/heapdump:rw
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      - METASFRESH_HOME=/opt/metasfresh
  webapi:
    build: webapi
    # links:
    #   - app:app
    #   - db:db
    #   - rabbitmq:rabbitmq
    #   - search:search
    networks:
      - nginx
      - default
    # expose:
    #   - 8789
  # to access the webui-api directly 
  # (eg. for debugging or connecting your app to the metasfresh api) 
  # uncomment following port:
    # ports:
    #  - 8080:8080
    restart: always
    volumes:
      - ./volumes/webapi/log:/opt/metasfresh-webui-api/log:rw
      - ./volumes/webapi/heapdump:/opt/metasfresh-webui-api/heapdump:rw
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
  webui:
    build: webui
    # links:
    #   - webapi:webapi
    ports:
      - 81:80
      - 444:443
    networks:
      - nginx
      - default
    restart: always
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    #uncomment and set to URL where metasfresh will be available from browsers
    environment:
      - WEBAPI_URL=https://metasfresh.domain.tld
  rabbitmq:
    build: rabbitmq
    # expose:
    #   - 5672
    # networks:
    #   - metasfresh
    restart: always
    volumes:
      - ./volumes/rabbitmq/log:/var/log/rabbitmq/log
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      RABBITMQ_DEFAULT_USER: metasfresh
      RABBITMQ_DEFAULT_PASS: metasfresh
      RABBITMQ_DEFAULT_VHOST: /
  search:
    build: search
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 65536
        hard: 65536
    cap_add:
      - IPC_LOCK
  # to access the search api directly
  # (e.g. if you did docker-compose up search to have the deachboard with your locally running metasfresh services)
  # uncomment following ports:
  # ports:
  #   - 9200:9200
  #   - 9300:9300
    volumes:
      - ./volumes/search/data:/usr/share/elasticsearch/data
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      - ES_JAVA_OPTS=-Xms128M -Xmx256m
    restart: always
networks:
  default:
    driver: "bridge"
  nginx:
    external: true

nginx config:

# make sure that your dns has a cname set for metasfresh and that your metasfresh container is named metasfresh

server {
    listen 443 ssl;
    listen [::]:443 ssl;

    server_name metasfresh.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    error_log /config/log/nginx/metasfresh_error.log warn;
    access_log /config/log/nginx/metasfresh_access.log;

    # enable for ldap auth, fill in ldap details in ldap.conf
    #include /config/nginx/ldap.conf;

    # enable for Authelia
    #include /config/nginx/authelia-server.conf;

    location / {
        # enable the next two lines for http auth
        #auth_basic "Restricted";
        #auth_basic_user_file /config/nginx/.htpasswd;

        # enable the next two lines for ldap auth
        #auth_request /auth;
        #error_page 401 =200 /ldaplogin;

        # enable for Authelia
        #include /config/nginx/authelia-location.conf;

        include /config/nginx/proxy.conf;
        resolver 127.0.0.11 valid=30s;
        set $upstream_app  metasfresh_webui_1;
        set $upstream_port 80;
        set $upstream_proto http;
        proxy_pass $upstream_proto://$upstream_app:$upstream_port;

    }

    location /rest {
        # enable the next two lines for http auth
        #auth_basic "Restricted";
        #auth_basic_user_file /config/nginx/.htpasswd;

        # enable the next two lines for ldap auth
        #auth_request /auth;
        #error_page 401 =200 /ldaplogin;

        # enable for Authelia
        #include /config/nginx/authelia-location.conf;

        include /config/nginx/proxy.conf;
        resolver 127.0.0.11 valid=30s;
        set $upstream_app  metasfresh_app_1;
        set $upstream_port 8282;
        set $upstream_proto http;
        proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    }
}

Chrome error console

VM230:1 Mixed Content: The page at 'https://metasfresh.domain.tld/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://metasfresh.domain.tld:443/rest/api/login/availableLanguages'. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ VM230:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
Promise.then (async)
u.request @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
r.forEach.u.<computed> @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
y @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:191040
App @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
co @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
VM230:1 Mixed Content: The page at 'https://metasfresh.domain.tld/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://metasfresh.domain.tld:443/rest/api/i18n/messages'. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ VM230:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
Promise.then (async)
u.request @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
r.forEach.u.<computed> @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
I @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:26164
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:134051
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:134051
po @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
VM230:1 Mixed Content: The page at 'https://metasfresh.domain.tld/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://metasfresh.domain.tld:443/rest/api/login/isLoggedIn'. This request has been blocked; the content must be served over HTTPS.
(anonymous) @ VM230:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
Promise.then (async)
u.request @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
r.forEach.u.<computed> @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187551
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
f @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:191040
onEnter @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:191040
a @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
b @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
runEnterHooks @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
runChangeHooks @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
b @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
Y @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
u @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
listen @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
componentWillMount @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
po @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
Show 20 more frames
bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260 Uncaught (in promise) Error: Network Error
    at e.exports (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
    at XMLHttpRequest.f.onerror (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
f.onerror @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
Promise.then (async)
App @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
co @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260 Uncaught (in promise) Error: Network Error
    at e.exports (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
    at XMLHttpRequest.f.onerror (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
f.onerror @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
Promise.then (async)
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:134051
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:134051
po @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260 Uncaught (in promise) Error: Network Error
    at e.exports (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
    at XMLHttpRequest.f.onerror (bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260)
e.exports @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
f.onerror @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:102260
Promise.then (async)
onEnter @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:191040
a @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
b @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
runEnterHooks @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
runChangeHooks @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
l @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
b @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
Y @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
u @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
r @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
listen @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
componentWillMount @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:86316
po @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ka @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Da @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ni @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Hi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ts @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ms @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
ys @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Gi @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Es @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
As @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Rs.render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ds @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
Ns @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
render @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:187180
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:164846
n @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
(anonymous) @ bundle-d1a7b16e5ab64946b04c-git-f440f67.js:1
Show 14 more frames

(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)

Nachdem ich nun den NGINX Proxy hinzugefügt hatte, war das Problem wieder da.

Problem: Der https:// Teil in the WEBAPI_URL in der docker-compose.yml wird überschrieben
Lösung https://github.com/metasfresh/metasfresh-docker/issues/61

1 Like