-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
无法保存到后端数据库。如果问题持续存在,您应该保存文件到本地,以确保您的工作不会丢失。 #48
Comments
所有域名都需要是 HTTPS。浏览器禁止在 HTTPS 页面发起 HTTP 请求。 |
我修改了我的docker-compose但是好像没有效果 services: storage: room: redis: |
server{
} |
这是我的docker-compose.yaml
version: "3.8"
services:
frontend:
image: alswl/excalidraw:v0.17.0-fork-b2
environment:
- VITE_APP_BACKEND_V2_GET_URL=https://test.com/api/v2/
- VITE_APP_BACKEND_V2_POST_URL=https://test.com/api/v2/post/
- VITE_APP_WS_SERVER_URL=http://huatu.iris-sci.cn:8082
- VITE_APP_FIREBASE_CONFIG={}
- VITE_APP_HTTP_STORAGE_BACKEND_URL=http://huatu.iris-sci.cn:8081/api/v2
- VITE_APP_STORAGE_BACKEND=http
ports:
- 8085:80
storage:
image: alswl/excalidraw-storage-backend:v2023.11.11
restart: always
environment:
- PORT=8081
- STORAGE_URI=redis://redis:6379
ports:
- 8081:8081
room:
image: excalidraw/excalidraw-room:sha-49bf529
ports:
- 8082:80
redis:
image: redis
ports:
- "6378:6379"
volumes:
- ./redis_data/data:/data
The text was updated successfully, but these errors were encountered: