update to excalidraw 0.18.0

This commit is contained in:
2026-02-12 20:32:53 +01:00
parent 6061d4ab94
commit fe58cf7e89
4 changed files with 1870 additions and 45 deletions
-36
View File
@@ -1,36 +0,0 @@
server {
listen 80;
server_name draw.louiscreates.com;
# Frontend static build
root /var/www/excalidash;
index index.html;
# SPA routing
location / {
try_files $uri $uri/ /index.html;
}
# API reverse proxy (Express mounted at /api)
location /api/ {
proxy_pass http://127.0.0.1:6768/api/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Socket.IO websocket/polling endpoint
location /api/socket.io/ {
proxy_pass http://127.0.0.1:6768/api/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 600s;
}
}