custom location for CF Gate and removing box-shadow

This commit is contained in:
2026-07-27 12:28:06 +02:00
parent 63c39ebe90
commit 6a52445987
2 changed files with 2 additions and 2 deletions

View File

@@ -4642,7 +4642,6 @@ body.layout-modern.sidebar-right-hidden .pagination-container-fluid {
-webkit-backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
padding: 2px; padding: 2px;
max-width: fit-content; max-width: fit-content;
} }

View File

@@ -49,7 +49,7 @@ const gateOptions = {
}, },
cloudflare_status: { cloudflare_status: {
status: 'ok', status: 'ok',
location: 'Frankfurt', location: cfg.websrv.private_society_gate_location || 'Frankfurt',
name: 'Cloudflare', name: 'Cloudflare',
status_text: 'Working', status_text: 'Working',
}, },
@@ -1340,6 +1340,7 @@ process.on('uncaughtException', err => {
show_mime_picker: cfg.websrv.show_mime_picker !== false, show_mime_picker: cfg.websrv.show_mime_picker !== false,
private_society: cfg.websrv.private_society || false, private_society: cfg.websrv.private_society || false,
private_society_gate: cfg.websrv.private_society_gate || '', private_society_gate: cfg.websrv.private_society_gate || '',
private_society_gate_location: cfg.websrv.private_society_gate_location || 'Frankfurt',
show_content_warning: cfg.websrv.show_content_warning !== false, show_content_warning: cfg.websrv.show_content_warning !== false,
web_url_upload: !!cfg.websrv.web_url_upload, web_url_upload: !!cfg.websrv.web_url_upload,
enable_youtube_upload: cfg.websrv.enable_youtube_upload !== false, enable_youtube_upload: cfg.websrv.enable_youtube_upload !== false,