Hotfix release available: 2025-05-14b "Librarian".
upgrade now! [56.2] (what's this?)
Hotfix release available: 2025-05-14a "Librarian".
upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian".
upgrade now! [56] (what's this?)
Hotfix release available: 2024-02-06b "Kaos".
upgrade now! [55.2] (what's this?)
Hotfix release available: 2024-02-06a "Kaos".
upgrade now! [55.1] (what's this?)
New release available: 2024-02-06 "Kaos".
upgrade now! [55] (what's this?)
Hotfix release available: 2023-04-04b "Jack Jackrum".
upgrade now! [54.2] (what's this?)
projekte:uptime-kuma
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| projekte:uptime-kuma [2023/04/12 13:53] – [openproject.https.conf] chojetzki | projekte:uptime-kuma [2024/01/05 13:07] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Uptime Kuma ====== | ||
| + | |||
| + | ===== Zugänge ===== | ||
| + | |||
| + | ^ Root Zugriff ^^ | ||
| + | | **URL** | '' | ||
| + | | **User** | '' | ||
| + | | **Passwort** | '' | ||
| + | |||
| + | ^ Kimai Installation Admin ^^ | ||
| + | | **Email** | '' | ||
| + | | **Passwort** | '' | ||
| + | |||
| + | |||
| + | |||
| + | ===== Setup ===== | ||
| + | |||
| + | === Setup Nginx === | ||
| + | copy uptime-kuma.conf '' | ||
| + | |||
| + | |||
| + | === Get Certificates === | ||
| + | < | ||
| + | mkdir / | ||
| + | chown -R $USER: | ||
| + | chmod -R 755 / | ||
| + | acme.sh --issue -w / | ||
| + | openssl dhparam -out / | ||
| + | </ | ||
| + | |||
| + | |||
| + | === Setup Nginx https config === | ||
| + | copy uptime-kuma.https.conf '' | ||
| + | |||
| + | < | ||
| + | mkdir / | ||
| + | mkdir / | ||
| + | cd / | ||
| + | systemctl reload nginx | ||
| + | </ | ||
| + | |||
| + | === Setup Uptime Kuma === | ||
| + | copy docker-compose.yml '' | ||
| + | |||
| + | < | ||
| + | cd / | ||
| + | docker compose up | ||
| + | </ | ||
| + | ===== uptime-kuma.conf ===== | ||
| + | < | ||
| + | server { | ||
| + | listen 80; | ||
| + | listen [::]:80; | ||
| + | server_name | ||
| + | location ^~ / | ||
| + | default_type text/plain; | ||
| + | root / | ||
| + | } | ||
| + | location / { | ||
| + | return 301 https:// | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | ===== uptime-kuma.https.conf ===== | ||
| + | < | ||
| + | server { | ||
| + | listen | ||
| + | server_name | ||
| + | ssl_certificate | ||
| + | ssl_certificate_key | ||
| + | ssl_dhparam | ||
| + | ssl_session_timeout | ||
| + | ssl_session_cache | ||
| + | ssl_session_tickets | ||
| + | ssl_protocols | ||
| + | ssl_ciphers | ||
| + | ssl_prefer_server_ciphers off; | ||
| + | access_log | ||
| + | error_log | ||
| + | if ($host != $server_name) { | ||
| + | rewrite ^/(.*) https:// | ||
| + | } | ||
| + | location ^~ / | ||
| + | default_type text/plain; | ||
| + | root / | ||
| + | } | ||
| + | location = / | ||
| + | alias / | ||
| + | } | ||
| + | location / { | ||
| + | proxy_set_header | ||
| + | proxy_set_header | ||
| + | proxy_set_header | ||
| + | proxy_pass | ||
| + | proxy_http_version 1.1; | ||
| + | proxy_set_header | ||
| + | proxy_set_header | ||
| + | } | ||
| + | } | ||
| + | |||
| + | </ | ||
| + | |||
| + | |||
| + | ===== docker-compose.yml ===== | ||
| + | < | ||
| + | # Simple docker-compose.yml from https:// | ||
| + | # You can change your port or volume location | ||
| + | |||
| + | version: ' | ||
| + | |||
| + | services: | ||
| + | uptime-kuma: | ||
| + | image: louislam/ | ||
| + | container_name: | ||
| + | volumes: | ||
| + | - ./ | ||
| + | ports: | ||
| + | - 127.0.0.1: | ||
| + | restart: always | ||
| + | |||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Unterprojekte ===== | ||
| + | |||
| + | {{indexmenu> | ||
| + | \\ | ||
| + | Neues Projekt anlegen: | ||
| + | |||
| + | |||
| + | |||
| + | ===== Kommentare ===== | ||
| + | |||
| + | |||
| + | |||