Updated README, fixed a few bugs with user creation, and added docker support to run MongoDB (needs testing)

This commit is contained in:
Karmaa
2025-03-11 20:34:49 -05:00
parent 4e277bdd07
commit 32f88417e5
9 changed files with 65 additions and 21 deletions

View File

@@ -19,8 +19,8 @@ http {
index index.html index.htm;
}
# Proxy IO requests
location /socket.io/ {
# Proxy SSH socket requests
location /ssh-socket.io/ {
proxy_pass http://127.0.0.1:8081;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
@@ -33,6 +33,20 @@ http {
proxy_send_timeout 86400s;
}
# Proxy database requests
location /database/ {
proxy_pass http://127.0.0.1:8082;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
# Timeout settings
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
}
# Error pages
error_page 500 502 503 504 /50x.html;
location = /50x.html {