Open techsupportkoeln opened 11 months ago
if i change
nothing happend. The export url is still with the port and draw.io works.
if i change
i got the Error loading file message in the browser.
DRAWIO_LIGHTBOX_URL in current version must be different from the BASE/SERVER URL (e.g, a different subdomain)
In the next version, we'll remove this limitation
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. See the FAQ for more information.
Describe the bug I installed draw.io using Docker-Compose. I use Nginx for the HTTPS call. My Draw.io instance can also be accessed via HTTPS and works, but as soon as I want to export a URL, the export link contains the domain and port 8443. I have already changed DRAWIO_LIGHTBOX_URL in docker-compose.yml, but if I remove port 8443 there, draw.io no longer works. I see the error "Error loading file No file selected". If I manually adjust the copied URL and remove the port, I can access the URL without any problem.
To Reproduce Steps to reproduce the behavior:
Expected behavior the export url should not contain port 8443.
draw.io version (In the Help->About menu of the draw.io editor):
Desktop (please complete the following information):
I tested the problem in incognito/private mode with all browser extensions switched off, write "yes" below:
Nginx configuration: ` server { listen [::]:80; listen 80;
}
server { listen [::]:443 http2 ssl; listen 443 http2 ssl;
} `
Draw.io configuration: ` version: '3' services: plantuml-server: image: plantuml/plantuml-server expose:
DRAWIO_CLOUD_CONVERT_APIKEY=${DRAWIO_CLOUD_CONVERT_APIKEY}
healthcheck: test: ["CMD-SHELL", "curl -f https://draw. || exit 1"]
interval: 1m30s
timeout: 10s
retries: 5
start_period: 10s
networks: drawionet:
volumes: fonts_volume: `