- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains - Omit embedded publish git dirs and empty placeholders from index Made-with: Cursor
25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
# Static landing: https://omdnl.org
|
|
# Deploy: scripts/deployment/sync-omdnl-org-static-to-ct.sh
|
|
# Provision CT + nginx: scripts/deployment/provision-omdnl-org-web-lxc.sh
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
server_name omdnl.org www.omdnl.org;
|
|
|
|
root /var/www/omdnl.org/html;
|
|
index index.html;
|
|
|
|
access_log /var/log/nginx/omdnl-org-access.log;
|
|
error_log /var/log/nginx/omdnl-org-error.log;
|
|
|
|
location = /health {
|
|
access_log off;
|
|
add_header Content-Type text/plain;
|
|
return 200 "healthy\n";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|