This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Uptime Kuma ====== See https://www.risposteinformatiche.it/status-page-self-hosted-uptime-kuma-vps-linux-debian-ubuntu/ <code bash> useradd -m -d /data/daemons/kuma </code> <file - docker-compose.yml> services: uptime-kuma: image: louislam/uptime-kuma:2 container_name: uptime-kuma restart: always ports: - "3331:3001" volumes: - /data/daemons/kuma/data:/app/data environment: - TZ=Europe/Rome </file> <file - kuma.conf> server { server_name kuma.mydomain.com; listen 443 ssl; listen 8443 ssl; http2 on; access_log /var/log/nginx/kuma.mydomain.com_access_log main; error_log /var/log/nginx/kuma.mydomain.com_error_log info; location / { proxy_pass http://127.0.0.1:3331/; proxy_set_header Connection $connection_upgrade; proxy_set_header Upgrade $http_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; } include com.mydomain/certbot.conf; } </file>