feat: Oracle Canvas, Revision History and Canvas Sharing

This commit is contained in:
Sagnik
2026-04-23 01:19:03 +05:30
parent e519339cc9
commit 527b10cd41
58 changed files with 3187 additions and 705 deletions

View File

@@ -11,6 +11,17 @@ server {
access_log /var/log/nginx/velocity.desineuron.in.access.log;
error_log /var/log/nginx/velocity.desineuron.in.error.log;
location /api/ {
proxy_pass http://127.0.0.1:8001;
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;
}
location / {
try_files $uri $uri/ /index.html;
}