Files
indir-fe/openclaw_setup_summary.json
Fahri Can ce7702b1cb
All checks were successful
UI Deploy - indir.bilgich.com 🎨 / build-and-deploy (push) Successful in 4m8s
main
2026-03-06 15:44:44 +03:00

175 lines
5.4 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"project": "OpenClaw - Kişisel AI Asistanı",
"date": "2026-03-05",
"server": {
"hostname": "Raspberry Pi",
"ip": "95.70.252.214",
"ssh_port": 2222,
"ssh_user": "haruncan",
"ssh_command": "ssh -p 2222 haruncan@95.70.252.214"
},
"storage": {
"sd_card": {
"mount": "/",
"size": "57GB",
"used": "25GB",
"available": "30GB",
"usage_percent": "46%"
},
"external_disk": {
"mount": "/mnt/extreme",
"device": "/dev/sda1",
"filesystem": "ext4",
"size": "916GB",
"used": "15GB",
"available": "856GB",
"usage_percent": "2%"
}
},
"services": {
"openclaw": {
"name": "Open WebUI",
"container_name": "openclaw",
"image": "ghcr.io/open-webui/open-webui:main",
"port": 3001,
"status": "running",
"url_local": "http://127.0.0.1:3001",
"url_domain": "http://ai.bilgich.com",
"description": "ChatGPT benzeri web arayüzü"
},
"ollama": {
"port": 11434,
"api_url": "http://127.0.0.1:11434",
"models": [
"llama3.2:3b"
],
"models_path": "/mnt/extreme/ollama",
"status": "running"
},
"gitea": {
"url": "http://gitea.bilgich.com",
"port": 1224,
"ssh_port": 222,
"status": "running"
},
"portainer": {
"url": "http://95.70.252.214:9000",
"port": 9000,
"description": "Docker yönetim arayüzü"
},
"postgres": {
"gitea_db": "postgres:14",
"backend_db": "postgres:16-alpine"
},
"redis": {
"container": "apps_redis",
"image": "redis:alpine"
}
},
"nginx": {
"config_path": "/etc/nginx/sites-available/openclaw.conf",
"server_name": "ai.bilgich.com",
"proxy_pass": "http://127.0.0.1:3001",
"ssl": false,
"ssl_note": "DNS kaydı eksik olduğu için Let's Encrypt sertifikası alınamadı"
},
"docker_containers": [
{
"name": "openclaw",
"status": "Up 27 minutes (healthy)",
"ports": "3001:8080"
},
{
"name": "gitea",
"status": "Up 42 minutes",
"ports": "222:22, 1224:3000"
},
{
"name": "gitea_db",
"status": "Up 42 minutes",
"ports": "5432"
},
{
"name": "backend_db",
"status": "Up 42 minutes",
"ports": "5432"
},
{
"name": "apps_redis",
"status": "Up 42 minutes",
"ports": "6379"
},
{
"name": "portainer",
"status": "Up 42 minutes",
"ports": "9000:9000"
},
{
"name": "gitea_runner",
"status": "Up About an hour",
"ports": "-"
},
{
"name": "ui-skript-container",
"status": "Up About an hour",
"ports": "1506:3000"
},
{
"name": "backend-skript-container",
"status": "Up About an hour",
"ports": "1806:3000"
},
{
"name": "backend-digicraft-container",
"status": "Up About an hour",
"ports": "1805:3001"
},
{
"name": "ui-digicraft-container",
"status": "Up About an hour",
"ports": "1505:80"
},
{
"name": "frontend-container",
"status": "Up About an hour",
"ports": "1800:3000"
}
],
"data_paths": {
"docker_data": "/mnt/extreme/docker-data",
"docker_config": "/mnt/extreme/docker",
"projects": "/mnt/extreme/projects",
"ollama": "/mnt/extreme/ollama",
"openclaw_data": "/mnt/extreme/open-webui/data"
},
"pending_tasks": {
"dns_record": {
"description": "ai.bilgich.com için DNS A kaydı eklenmeli",
"type": "A",
"name": "ai",
"value": "95.70.252.214"
},
"ssl_certificate": {
"description": "DNS kaydı eklendikten sonra Let's Encrypt sertifikası alınmalı",
"command": "sudo certbot --nginx -d ai.bilgich.com"
}
},
"useful_commands": {
"openclaw_logs": "docker logs openclaw --tail 50",
"openclaw_restart": "docker restart openclaw",
"ollama_models": "ollama list",
"ollama_pull_model": "ollama pull <model_name>",
"docker_ps": "docker ps",
"nginx_test": "sudo nginx -t",
"nginx_reload": "sudo systemctl reload nginx",
"system_resources": "free -h && df -h"
},
"first_time_setup": {
"step1": "DNS A kaydı ekle: ai -> 95.70.252.214",
"step2": "DNS propagation bekle (5-10 dakika)",
"step3": "http://ai.bilgich.com adresine git",
"step4": "İlk hesabı oluştur (admin)",
"step5": "Model otomatik llama3.2:3b olacak",
"step6": "Kullanıma hazır!"
}
}