الملفات
Ghayamah-Uptime/status-page/nginx.conf
2026-09-17 22:11:14 +03:00

22 أسطر
683 B
Nginx Configuration File

server {
listen 80;
server_name _;
# Serve the static status page
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
# Proxy Uptime Kuma API — avoids CORS issues entirely (same-origin from browser's perspective)
location /kuma-api/ {
proxy_pass https://uptime-kuma-web-3aa83c30.hosted.cumin.dev/;
proxy_ssl_server_name on;
proxy_set_header Host uptime-kuma-web-3aa83c30.hosted.cumin.dev;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Accept-Encoding "";
}
}